AW: Validator Framework: Can not evaluate regular expression

2003-07-31 Thread Dirk Behrendt
not evaluate regular expression Password fields are only run against the "required" validation in the client side javascript for security purposes. Password fields are validated with all rules on the server side though. David --- Dirk Behrendt <[EMAIL PROTECTED]> wrote: > Hi!

Re: Validator Framework: Can not evaluate regular expression

2003-07-30 Thread David Graham
Password fields are only run against the "required" validation in the client side javascript for security purposes. Password fields are validated with all rules on the server side though. David --- Dirk Behrendt <[EMAIL PROTECTED]> wrote: > Hi! > > No, I do not have an extra '<' in my code. Th

Validator Framework: Can not evaluate regular expression

2003-07-30 Thread Dirk Behrendt
Hi! No, I do not have an extra '<' in my code. The regular expression is not evaluated. Example: When I use ^[a]$ the user only should input "a". But in my case you can input anything you want. There are some ideas? Dirk If your code is a direct cut-n-paste, you've got an extra '>' i

Re: Validator Framework: Can not evaluate regular expression

2003-07-30 Thread Jeff Kyser
If your code is a direct cut-n-paste, you've got an extra '>' in your first regular expression? >^[a-zA-Z0-9_.-]*$ -jeff On Wednesday, July 30, 2003, at 07:14 AM, Dirk Behrendt wrote: >^[a-zA-Z0-9_.-]*$ - To unsubscribe, e-m

Validator Framework: Can not evaluate regular expression

2003-07-30 Thread Dirk Behrendt
Hello! I want to check login and password fields. If I submit with empty textfields, the errors are shown correct ( required). But my regular expression was ignored. (see code below). What is necessary to check regular expressions? Dirk Struts-config.xml - form-bean na