尊重作者,请保留 www.it55.com 链接字样。
网上有类似的教程,但是是asp.net 1.1的版本,这是本人写的,asp.net 2.0支持。
public string GetIPByDomain(string url)
{
if (url.Trim() == string.Empty)
return "";
try
{
System.Net.IPHostEntry host = System.Net.Dns.GetHostEntry(url);
return host.AddressList.GetValue(0).ToString();
}
catch (Exception e)
{
throw e;
}
}
调用方法: GetIPByDomain("www.it55.com")