Click here to Skip to main content
15,882,114 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How do i restrict textbox accept only numerics & length upto 10
Posted

1 solution

Hi,
you can try this

XML
<asp:TextBox ID="TextBox1" MaxLength="10" runat="server"></asp:TextBox>
                   <asp:RegularExpressionValidator ID="RegularExpressionValidator1" ControlToValidate="TextBox1"
                       ValidationExpression="^(0|[1-9][0-9]*)$" runat="server" ErrorMessage="Please Enter Only Numerics"
                       ForeColor="Red"></asp:RegularExpressionValidator>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900