↧
Re: Check if domain exists
You can try to do this with System.Net.Dns.GetHostEntry and System.Net.Dns.GetHostByName.The latter one is officially deprecated but I found that it actually works better than the former one.I...
View ArticleRe: Check if domain exists
you'll need to tune the page's timeout if you try to parse the user's email address and attempt to resolve a webpage for the domain as some lookups can take a little while, also, a number of ISPs don't...
View ArticleRe: Check if domain exists
Hi go through this link http://forums.asp.net/t/1552671.aspx/1 http://forums.asp.net/t/1828128.aspx/1
View ArticleCheck if domain exists
I want to verify the email address that a user enters in my websites sign-up form. Is there a way for me to this in C# e.g. by checking if entered email address domain actually exists? To be more...
View Article