This is my technical area for troubleshooting and learning new programming skills and much more. Here, you will find answers on a wide range of technologies such as AI, Machine Learning, OpenAI, Databricks, ASP.NET, C#, Python, Microsoft Access, MySQL, Amazon Web Services, SQL Server, PL/SQL, JD Edwards, SAS, Salesforce, APIs, MVC, and many others. Please feel free to visit and join the discussion!
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