J
jacerhea
For our asp.net app we have ValidateRequest turned on. We would like
to add client side validation that mimics this validation so the users
will know when they have entered bad data. So my first question is,
does anyone know of a regular expression that mimics this behavior?
Secondly, we want to do this across all textbox controls in the app
and time is a consideration. Would it be a better idea to recursively
iterate though each control on a page and add a regular expression
validator or should we try something like jquery to do this on the
client side? I'm not that familiar with jquery and am not sure how
well it play with the asp.net javascript.
Thanks in advance.
to add client side validation that mimics this validation so the users
will know when they have entered bad data. So my first question is,
does anyone know of a regular expression that mimics this behavior?
Secondly, we want to do this across all textbox controls in the app
and time is a consideration. Would it be a better idea to recursively
iterate though each control on a page and add a regular expression
validator or should we try something like jquery to do this on the
client side? I'm not that familiar with jquery and am not sure how
well it play with the asp.net javascript.
Thanks in advance.