记忆盒子

把记忆装进灰色的盒子,封装起来,那年那月,重新拾起。

首页搜索目录
search
当前主题: 软件编程

asp.net实现通过域名或主机名获得IP地址

作者:Kaka    时间:2009-10-28 15:50:20    浏览:    评论:0

      通过域名查IP,是站长的常用功能了,用asp.net实现的代码如下:

public string GetIpByHostName(string hostName)
{
    hostName = hostName.Trim();
    if (hostName == string.Empty)
        return string.Empty;
    try
    {
        System.Net.IPHostEntry host = System.Net.Dns.GetHostEntry(hostName);
        return host.AddressList.GetValue(0).ToString();
    }
    catch (Exception)
    {
        return string.Empty;
    }
}     

相关文章:

IP反查域名/主机名的ASP.NET源代码

x

标签: Asp.net  

※ 网站速度慢?试试网站自动优化工具 ※

上一篇: 向Google提交Sitemaps最简单的方法
下一篇: IP反查域名/主机名的ASP.NET源代码

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

订阅博客                   QQ交流群(312716741)

  • 通过Google订阅本站 通过鲜果订阅本站 通过抓虾订阅本站
  • 通过QQ邮箱订阅本站 通过Yahoo订阅本站 通过有道订阅本站

Search

最新评论及回复

最近留言

网站分类

Powered By Z-Blog 1.8 Walle Build 91204 Designed by Han'space

Copyright @2009-2024 All Rights Reserved. 粤ICP备14028160号-1

Powered By Z-Blog 1.8 Walle Build 91204
Copyright @2009-2024 All Rights Reserved.