This is my Technical area of troubleshooting and learning new Programming skills and many more. Here you will find answers for many new technologies like asp.net 2.0/3.5,4.0 C# access, mysql, Amazon Webservice ,Sql-server, JD Edwards, SAS, Salesforce, APIs, MVC and many more. please visit & discuss.
Friday, February 11, 2011
Email validation c# asp.net 4.0
public static bool IsValidEmailAddr(string email)
{
try
{
System.Net.Mail.MailAddress addr = new System.Net.Mail.MailAddress(email);
1 comment:
Rajeev
This is an excellent component for verifying email addresses:
http://www.kellermansoftware.com/p-37-net-email-validation.aspx
Post a Comment