client side editing in Text Boxes?

  • Thread starter Thread starter Tina
  • Start date Start date
T

Tina

Are there any textbox controls capable of enforcing client side editing i.e.
telephone number edit masks, enforce numeric, etc.
Thanks,
T
 
It will all have to be done with javascript. You should be able to write one
yourself I would think though, shouldn't be that bad.
 
You could use validation for this. For the phone number mask, use
regular expression validator, for the numeric enforcement, use the
Compare validator (close, not in front of .NET so don't have exact
validator name for this).

James
 
Back
Top