microkarl
Well-known member
All,
How can I have only number being input in the textbox if I have a textbox like this:
I tried [0-9]{1,20} and /d{1,} but it won;t work as long as you have the first character as number.
Thanks
How can I have only number being input in the textbox if I have a textbox like this:
Code:
<asp:textbox id="txtCardNumber" runat="server" MaxLength="20" size="25" />
I tried [0-9]{1,20} and /d{1,} but it won;t work as long as you have the first character as number.
Thanks