Get the IP address of server given Domain Name

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi EveryBody:

How can I get the IP for web site when I have the Domain Name ?

To make my question clear:
For example when you go to www.netcraft.com and search for any web site by
given the web site name alot of data coming up included the IP address for
the Web Site .

Can Some body tell me how can I do so or redirect me to such topic.

any help will be completlly apprecaited

regatd's

Husam
 
Hi EveryBody:

How can I get the IP for web site when I have the Domain Name ?

To make my question clear:
For example when you go towww.netcraft.comand search for any web site by
given the web site name alot of data coming up included the IP address for
the Web Site .

Can Some body tell me how can I do so or redirect me to such topic.

any help will be completlly apprecaited

regatd's

Husam

This will bring back an Array of IPAddresses for a given domain name:

Dim ips As System.Net.IPAddress() =
System.Net.Dns.GetHostEntry("www.hotmail.com").AddressList

Phillip Ross Taylor
 
Back
Top