RegularExpressionValidator

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how to i check if a textbox is only numeric? don't care about lenght
ie 741254
and also for a ssn xxx-xx-xxx
thanks
stan
 
For number-only check, this should work: ^\d*$

For SSN, check out http://www.regexlib.com/ It has many reg ex variants.

message how to i check if a textbox is only numeric? don't care about lenght
ie 741254
and also for a ssn xxx-xx-xxx
thanks
stan
 
Back
Top