用于验证百分比值的范围验证器
我想使用 RangeValidator 来验证百分比值。为此,我将最小值设置为 0.0,最大值设置为 100.00,但它不起作用。我尝试使用最小值为 0%,最大值为 100%,但仍然不起作用。
这是一些代码:
<asp:RangeValidator ID="percentageRangeValidator" runat="server"
ControlToValidate="percentageBox" Display="Dynamic"
ErrorMessage="Invalid Percentage"
MaximumValue="100.00" MinimumValue="0.00">*</asp:RangeValidator>
我的方法有什么问题。
I want to use RangeValidator
to validate percentage value. For that I set minimum value as 0.0 and maximum value to 100.00, but its not working. I tried using minimum value as 0% and maximum values as 100% but still not working.
Here is some code:
<asp:RangeValidator ID="percentageRangeValidator" runat="server"
ControlToValidate="percentageBox" Display="Dynamic"
ErrorMessage="Invalid Percentage"
MaximumValue="100.00" MinimumValue="0.00">*</asp:RangeValidator>
What's wrong in my method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要指定值的类型
Type="Double"
:You need to specify the type of the value
Type="Double"
:您可以尝试在范围验证器控件中包含“Type=Double”的代码吗
Can you try this code which includes "Type=Double" in Range Validator control
您错过了代码中的 type 属性。我正在向您发送一个示例代码......
You miss type attribute in you code. I am sending you an example code for this....