RequiredFieldValidator price range
-
Hello all I have 2 textboxes on my aspx site which I want to validate. I want to make sure that the second textbox value is higher than the first one. For example: The user inputs 40 in the first textbox and 20 in the second. This will give an error since 20 is less than 40. But if the user types 40 and 60 it should work. It should also be numbers only :) Any ideas? Cheers! :-D
-
Hello all I have 2 textboxes on my aspx site which I want to validate. I want to make sure that the second textbox value is higher than the first one. For example: The user inputs 40 in the first textbox and 20 in the second. This will give an error since 20 is less than 40. But if the user types 40 and 60 it should work. It should also be numbers only :) Any ideas? Cheers! :-D
What is the issue ? You can easily do it using
JavaScript
.Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
Hello all I have 2 textboxes on my aspx site which I want to validate. I want to make sure that the second textbox value is higher than the first one. For example: The user inputs 40 in the first textbox and 20 in the second. This will give an error since 20 is less than 40. But if the user types 40 and 60 it should work. It should also be numbers only :) Any ideas? Cheers! :-D
Solved
-
Solved