asp:RangeValidator 最小值 > 0
我终于回来了,并且实际上有了一份烫发工作,感谢你们不久前给我的所有帮助! :) 谢谢。
好的,现在我有一个简单的任务,将一些范围添加到现有的 ASP.Net 页面。
我正在使用 asp:RangeValidator 并有一个 type=double 并希望有一个值 > 0 且不 >=。有没有一种快速而好的方法来做到这一点?
我知道 RangeValidatorAttribute 类中有一个 RangeBoundry 类型。我可以在 RangeValidator 类中使用类似的东西吗?
非常感谢,乔治。
I am back at last and actually have a perm job thanks to all the help you guys gave me a while back !! :) Thanks.
Ok, so now I have a simple task, to add some ranges to an existing ASP.Net page.
I am using asp:RangeValidator and have a type=double and want to have a value of > 0 and not >=. Is there a quick and nice way of doing this ??
I know there is a RangeBoundry type in the RangeValidatorAttribute class. Is there something similar I can use in the RangeValidator class at all ?
Many thanks, George.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我为此简单地使用了MinimumValue 和MaximumValue 参数。
I simply used MinimumValue and MaximumValue parameters for this.