I would like to know textbox restriction for the specipic nu
I would like to know textbox restriction for the specipic numeric value in asp.net Gridview
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vasu GadhiyaPosted Apr 24, 2014, 1:23 AM
if (!System.Text.RegularExpressions.Regex.IsMatch(textbox.Text, "^[0-9]*$"))
----------------
or use regular expression Validator control
ControlToValidate = textbox1
ErrorMessage = only number allowed
ValidationExpression = ^[0-9]*$