使用 Asp.Net RangeValidator 进行 Int64
有没有办法将 RangeValidator 用于大数字(Int64 范围)?
Is there a way to use RangeValidator for large numbers (Int64 range)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看过之后,没有干净的方法可以仅使用范围验证器来完成此操作。我在下面列出了使用网络表单验证器的替代方案。
HTML:
HTML Alt:
您可以在此处使用组合。一项用于验证其是否在 64 位范围内,另一项用于验证其是否只是一个整数。看起来很笨重,但应该可以。
背后代码:
After looking that this there is no clean way to do this with just a rangevalidator. I've listed the alternatives below that use the webforms validators.
HTML:
HTML Alt:
You could use a combo here. One to verify that its in the 64 bit range and one to validate its just an integer. Seems clunky, but it should work.
Code Behind: