Reputation: 1403
I want only letters and the special symbols /
and -
in my textbox.
How should be the expression like to give in custom validator?
Thanks In Advance
Upvotes: 0
Views: 47
Reputation: 120917
You should use a RegularExpressionValidator.
The expression should be something like ^[a-zA-Z/\-]+$
If the text cannot be empty, you need a RequiredFieldValidator aswell, as all the other validators are only called if the text is not empty.
Upvotes: 5