验证文本框仅包含数字
另一个问题请
如何通过使用自定义验证来验证文本框是否为数字,我的意思是代码是什么?
非常感谢
Another question please
how to validate textbox to be number only by using custom validation, I mean what is the code??
many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试使用以下正则表达式“^\d+$”
try to use following regExp "^\d+$"
您可以使用
HTML 文本框
并通过javascript
进行验证You can use a
HTML Textbox
and validate throughjavascript
你可以
使用面罩或
使用函数 IsNumeric()
You can
use a mask or
use the function IsNumeric()
使用正则表达式验证器控件
这是检查电话号码验证的良好控件。
试试这个
年龄:
阅读此文档。http://msdn.microsoft.com/en-us/library/aa479013.aspx
use RegularExpressionValidatorcontrol
This is a good control to check phone numbers validation.
Try this
Age:
Read this document.http://msdn.microsoft.com/en-us/library/aa479013.aspx