如何进行验证 [英] how to give validation

查看:84
本文介绍了如何进行验证的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在vb.net中对数字和字符串字段进行验证

解决方案

以下是测试字符串全部为数字的一种方法的示例: pre> Dim intNumber as integer = 0
Dim strTestString as string =123456
尝试
intNumber = CInt(strTestString)
Catch
抛出新系统.Exception(非数字)
结束尝试


how to give validation in vb.net to numeric and string field

解决方案

Here is an example of one way to test that a string is all numeric:

Dim intNumber as integer=0
Dim strTestString as string = "123456"
Try
    intNumber = CInt(strTestString)
Catch
    Throw New System.Exception("Not Numeric")
End Try


这篇关于如何进行验证的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆