I have asp.net(c#) web form with html input text(first name) how i can check if string contains symbols, numbers, unicode text, space with c#
or its more easier with html?
I want to user entered only first name
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This regular expression will only match on one or more ASCII characters:
You can use the above in either Javascript or .NET.