T Tina Oct 13, 2004 #1 Are there any textbox controls capable of enforcing client side editing i.e. telephone number edit masks, enforce numeric, etc. Thanks, T
Are there any textbox controls capable of enforcing client side editing i.e. telephone number edit masks, enforce numeric, etc. Thanks, T
C Curt_C [MVP] Oct 13, 2004 #2 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.
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.
J James Thomas Oct 14, 2004 #3 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
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
A Alex Homer Oct 14, 2004 #4 I wrote this one for a recent book: http://www.daveandal.net/books/6744/maskedit/maskedit.aspx You can download the code from: http://www.daveandal.net/books/6744/
I wrote this one for a recent book: http://www.daveandal.net/books/6744/maskedit/maskedit.aspx You can download the code from: http://www.daveandal.net/books/6744/
T Tina Oct 15, 2004 #5 Regular Expression Validator - of course. Just not thinking. Thanks so much, T