Here are the steps to validate EmailAddress in Asp.net using RegularExpressionValidator Control.
Add a RegularExpressionValidator control to your web page.
Set the ControlToValidate property to indicate which control to validate.
Set the ValidationExpression property to regular expression as shown
in below image.
Set the Text property to define the message to display if the validation fails.
Advertisements