In asp.net, I need to add a validator to a textbox that forces the input to be numbers.
Is this built in?
I have already added a required field validator to the textbox.
|
|
In asp.net, I need to add a validator to a textbox that forces the input to be numbers. Is this built in? I have already added a required field validator to the textbox.
|
||||||||
|
|
|
|
||||||
|
|
|
I think there needs to be more clarification of the requirements here. What kind of numbers are we talking about? Positive integers? Any integer? A number with a decimal place? What about commas in the number (1,000)? I recommend a RegularExpressionValidator to do your work, but these questions make a difference when it comes to which RegEx you use. |
||
|
|
|
|
Use a range validator.
This permits you to use numbers with decimal places (by using Type="Double" or "Currency"), or other kinds of numbers that Windows recognizes. Check MSDN for more info on the Range Validator Control. |
|||
|
|
|
|
You could use a Regex Validator to ensure the text is numeric I think the regex would be
e.g.
EDIT:
As the other two posters also pointed out you can also use |
||||||||||||||
|