i am using javascript validation library file for validating textbox values. now i want to allow user to enter only value in between 0 and 9999999.99 . how to do this by using
$.validator.addMethod
?
Why don't you just use ASP.NET Validators?
<asp:RangeValidator ID="rValidator" runat="server"
ControlToValidate="thatControl"
MaximumValue="9999999.99"
MinimumValue="0"
Type="Double" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With