Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Resolve an internet host address

Total Hit ( 2761)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


The System.Net.Dns class exposes a few static methods that let you resolve an internet domain name - such as www.vb2themax.com - into a 4-part numeric IP address, also known as dotted-quad notation.

The Resolve static method takes a string and returns an IPHostEntry object; you can learn the actual IP address by querying its AddressList property, which returns an array of IPAddress objects. In most cases, this array contains only one element. Here's a code snippet that shows how to resolve an address programmatically:

Click here to copy the following block
Dim iphe As IPHostEntry = Dns.Resolve("www.vb2themax.com")

Dim addr As IPAddress
For Each addr In iphe.AddressList
  Console.WriteLine(addr)
Next

The IPHostEntry object exposes also the Aliases property, which returns an array of strings that represent all the aliases associated with the host.


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.