Never been to CodeSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

Simple Email Address Syntax Validation (See related posts)

// Basic email address syntax validation
// If the address is not formatted properly this will throw an error.

   System.Net.Mail.MailAddress temp = new System.Net.Mail.MailAddress(emailAddress);

You need to create an account or log in to post comments to this site.