ASP.NET:验证文本框包含大于等于零的整数?
如果我想验证文本框包含大于或等于零的整数。我是否需要使用两个 asp:CompareValidator 控件:一个带有 DataTypeCheck 运算符,另一个带有 GreaterThanEqual 运算符?
或者数据类型运算符是多余的吗?我可以只使用带有 GreaterThanEqual 运算符的单个验证器(并且类型设置为 Integer)吗?
If I want to validate that a text box contains an integer greater than or equal to zero. Do I need to use TWO asp:CompareValidator controls: one with a DataTypeCheck operator and one with a GreaterThanEqual operator?
Or is the datatype operator redundant? Can I just use a single validator with the GreaterThanEqual operator (and the type set to Integer)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该足够了
This should be enough