Binu
Binu

Reputation: 1403

Validation in ASP.net

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

Answers (1)

Klaus Byskov Pedersen
Klaus Byskov Pedersen

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

Related Questions