vote up 1 vote down star

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.

flag

22% accept rate
1  
Numbers or digits? There is a difference. – Joel Coehoorn Apr 22 at 15:21
Joel, what is the difference? – Blankman Apr 22 at 15:36
@Blankman presumably he means the difference between "digits", the 10 characters representing 0-9 and "numbers", being comprised of digits, commas, decimal points, base identifiers etc... – Eoin Campbell Apr 22 at 17:03

4 Answers

vote up 3 vote down check
<asp:RegularExpressionValidator runat="server"
            ControlToValidate="numbersOnlyTextBox" 
            ErrorMessage="Enter only numeric characters." 
            ValidationExpression="^\\d+$" />
link|flag
2  
ValidationExpression="^\\d*$" – Tracker1 Apr 22 at 15:33
Thanks, It actually should be + instead of * since there is a requirement for it to be non-empty. – Chris Ballance Apr 22 at 15:41
vote up 0 vote down

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.

link|flag
vote up 2 vote down

Use a range validator.

<asp:TextBox ID="MyTextBox" MaxLength="4" Width="75" 
   Text="0" runat="server"></asp:TextBox>
<asp:RangeValidator ID="MyRangeValidator"  Display="Static" Type="Integer"
   MaximumValue="9999" MinimumValue="0" EnableClientScript="true" 
   ControlToValidate="MyTextBox" runat="server" SetFocusOnError="true" 
   ErrorMessage="Ooops"></asp:RangeValidator>

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.

link|flag
vote up 5 vote down

You could use a Regex Validator to ensure the text is numeric

I think the regex would be

[0-9]*

e.g.

<asp:TextBox ID="tbxNumbers" runat="server" />
<asp:RegularExpressionValidator ID="revNumericValidator" runat="server" 
                ValidationExpression="^[0-9]*$" ControlToValidate="tbxNumbers" ErrorMessage="Must be Numeric" />

EDIT: As the other two posters also pointed out you can also use \d to represent a Numeric Character

link|flag
3  
\d+ might be better – Keltex Apr 22 at 15:17
1  
Note that + rather than the * also makes the required field validator redundant. – Joel Coehoorn Apr 22 at 15:22
I like regex, but think it is overkill in this case; a range validator would be more "efficient", since you could easily permit decimals and so on, depending on the Type attribute you use. – Cyberherbalist Apr 22 at 15:25
@Joel Coehoorn... I'm fairly sure it doesn't. A + means 1 or More characters however the example i gave there with a simple button click will validate on an empty textbox. I think the regex validator only kicks in for a .Text Length > 1 – Eoin Campbell Apr 22 at 15:27
blasphemous answer acceptance ;) – Eoin Campbell Apr 22 at 15:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.