Click here to Skip to main content
15,886,422 members
Articles / Web Development / ASP.NET
Tip/Trick

RegularExpressionValidator In ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.85/5 (5 votes)
8 Oct 2012CPOL 167.6K   1   5
ASP.NET RegularExpressionValidator

Introduction

Here, I show you the use of RegularExpressionValidator to validate various expressions like:

  1. EmailID
  2. U.S. Phone Number

Background

It is a common requirement for beginners in ASP.NET to write various validation expressions when creating a form to register a user.

It is necessary to specify that RegularExpressionValidator is validating which control. In the ControlToValidate property, we specify the control which will be validated. For this, we need to mention the ID of the textbox control.

RegularExpressionValidator for Email ID

Here, I have shown a textbox with ID="txtEmail".

ASP.NET
<asp:TextBox ID="txtEmail" runat="server"></asp:TextBox>
              <asp:RequiredFieldValidator ID="rfvEmail" runat="server"
              ErrorMessage="*" ControlToValidate="txtEmail"
                  ValidationGroup="vgSubmit" ForeColor="Red"></asp:RequiredFieldValidator>
              <asp:RegularExpressionValidator ID="RegularExpressionValidator2"
              runat="server" ErrorMessage="Please Enter Valid Email ID"
                  ValidationGroup="vgSubmit" ControlToValidate="txtEmail"
                  CssClass="requiredFieldValidateStyle"
                  ForeColor="Red"
                  ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*">
                  </asp:RegularExpressionValidator>

RegularExpressionValidator for U.S. Phone Number

ASP.NET
 <asp:TextBox ID="txtPhoneNumber" runat="
server"></asp:TextBox>(000-000-0000)
                <asp:RequiredFieldValidator ID="rfvPhoneNumber" runat="server" 
                ErrorMessage="*" ControlToValidate="txtPhoneNumber"
                    ValidationGroup="vgSubmit" ForeColor="Red"></asp:RequiredFieldValidator>
                <asp:RegularExpressionValidator ID="RegularExpressionValidator1" 
                runat="server" ErrorMessage="Phone Number is not valid"
                    ValidationGroup="vgSubmit" ControlToValidate="
                    txtPhoneNumber" ForeColor="Red"
                    ValidationExpression="((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4}">
                    </asp:RegularExpressionValidator>

Points of Interest

These are the most common validation expressions used to validate an Email ID and phone number.

There is no way to check the false Email IDs. They can be checked by the mail servers only.

There is no way to check the false phone numbers. They are also checked by the Phone agencies.

These regular expressions only check the expression pattern for an email or a phone number.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer Essential Solve LLC
India India
I am flexible, responsive, creative and enthusiastic with ability to manage multiple initiatives with deadline. I have willingness to pick up and develop new skills and ability to balance a number of conflicting priorities and make decisions. I am results oriented - focused on productive and high-yield activities.

Comments and Discussions

 
QuestionWhat about whitespace? Pin
Fandango687-Feb-17 12:48
Fandango687-Feb-17 12:48 
Questioncode related Pin
Member 1242301629-Mar-16 0:25
Member 1242301629-Mar-16 0:25 
AnswerRe: code related Pin
vaynenick4-Sep-16 20:42
vaynenick4-Sep-16 20:42 
Questionstrict Regular expression validation Pin
Dawood Abbas17-Nov-14 20:36
Dawood Abbas17-Nov-14 20:36 
GeneralMy vote of 5 Pin
DrABELL9-Oct-12 7:34
DrABELL9-Oct-12 7:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.