I want a method that takes  the domain name, ie, "www.google.com" 
and gives me the IP address, ie 58.13.38.137
I can find the reverse using System.net Dns class

IPHostEntry objIPHostEntry;
objIPHostEntry = Dns.GetHostByAddress( txtIP.Text );
lblHostName.Text = objIPHostEntry.HostName;







 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to