Problem with Expression validator for text box input
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
I'm using a 'regular expression validator' to valid use input on a text box I have two different web pages that use the same validation expression criteria for two different text boxes; one of them works, the other does not work. I dont understand why The field is 3 alpha characters followed by 3 numeric. Doesn't matter if they are caps or small letters I use \w{3} to signify alpha and \d{3} to signify numeric. It works on one page ( adding a new record ) but on another page ( view existing records) it only works if I turn cap locks on for alph and turn it off for numeric and even then it is not consistent Any thoughts? Thanks