I have a asp.net textbox that uses a RegularExpressionValidator. If the regular expression fails, is it possible to execute a small client side javascript function to do something?
I have a asp.net textbox that uses a RegularExpressionValidator. If the regular expression fails,
Share
Use customvalidator instead and then make it call a js function. In that function you can perform regular expression validation and what ever else you desire.