I have a TextBox & I want to accept just numbers in this TextBox when typing.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I use the following client side code to do this:
Then in my aspx page I attach it to my TextBox with:
This is a client side ONLY check so make sure to implement a server side check using like
Int32.TryParseon your data as well to ensure that there is a number.