C#
using System.Net;
protected void Page_Load(object sender, EventArgs e)
{
foreach (IPAddress address in
Dns.GetHostAddresses("www.devcurry.com"))
{
Response.Write(address.ToString());
}
}
VB.NET
Imports System.Net
Protected Sub Page_Load(ByVal sender As Object, _
ByVal e As EventArgs)
For Each address As IPAddress In
Dns.GetHostAddresses("www.devcurry.com")
Response.Write(address.ToString())
Next address
End Sub
Tweet
2 comments:
Informative blog really helpful for those who are looking for some programs to find the ip address of website ..I am not a techsavy so i usually find the ip address of any website using sites like Ip-Details.com here they will render domain host search tool which display the ip address of any website along with details like ip location ,country ,ISP address and so on ...
Post a Comment