Is there a validation control to require the user to input only letters?
Input letters only
Collapse
X
-
If this ASP.NET then you would use the RegularExpressi onValidator, then work on a regular expression pattern to allow only letters like this
That will allow only letters. Hope this helps.Code:[^a-zA-Z]
Happy Coding! -
-
Comment