Regular Expression Validator
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, is there anyway to associate one regular expression validator to various textbox???? Thanks for ur help BECK 7
Hi there, Sadly no, as the regularexpressionvalidator basically validates only one control which is specified in the
ControlToValidate
property. If you want to use a single validator to validate multiple textbox controls on the web page, you might go for a customvalidator which does not require you to specify the ControlToValidate property, and provide your own logic