Converting domain names to IP addresses
In ASP.NET, we can easily convert the Domain names to its related IP address like if a website like planetsourcecode.in has a domain name i.e planetsourcecode.com, It has also a corresponding Internet Protocol Address like 208.111.14.112.
this can be easily done in ASP.NET using C#
Steps for doing this:
1). First we have to include the namespace for this class
Using System.net;