Archive for September 17th, 2009
C# Sharp IsValidEmail(email)
bool IsValidEmail(string email)
{
try {
var addr = new System.Net.Mail.MailAddress(email);
return true;
}
catch {
return false;
}
}
bool IsValidEmail(string email)
{
try {
var addr = new System.Net.Mail.MailAddress(email);
return true;
}
catch {
return false;
}
}
You are currently browsing the archives for Thursday, September 17th, 2009
Fusion theme by digitalnature | powered by WordPress
Entries (RSS) and Comments (RSS) ^