资源简介

获得主机域名及其IP和Port端口(初步入门)

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

using System.Net;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender EventArgs e)
    {
        txtaShowAnswer.Value = ““;
    }

    // 由主机域名获得其IP地址
    protected void btnShowLocal_Click(object sender EventArgs e)
    {
        txtaShowAnswer.Value = ““;
        string strShowAnwser = string.Empty;

        string strHostName = Dns.GetHostName(); //获取本地主机名
        strShowAnwser = “The local host‘s name is: “ + strHostName + “\n“;
        IPHostEntry ipHost = Dns.GetHostEntry(strHostName); //将主机名解析成IPHostEntry实例
        foreach (IPAddress ip in ipHost.AddressList) //将主机名(域名)对应的IP全部解析出来
            strShowAnwser += “The local host‘s IP is: “ + ip.ToString() + “\n“;
        IPAddress LocalIP = IPAddress.Parse(“127.0.0.1“); //将字符串实例成IP地址
        IPEndPoint ipEP = new IPEndPoint(LocalIP 80); //将网络端点表示成IP地址和端口号
        strShowAnwser += “The IPEndPoint is: “ + ipEP.ToString() + “\n“;
        strShowAnwser += “The Address is: “ + ipEP.Address + “\n“;
        strShowAnwser += “The Port is: “ + ipEP.Port + “\n“;
        strShowAnwser += “The AddressFamily is: “ + ipEP.AddressFamily + “\n“;
        strShowAnwser += “The Max port number is: “ + IPEndPoint.MaxPort + “\n“;
        strShowAnwser += “The Min port number is: “ + IPEndPoint.MinPort + “\n“;

        txtaShowAnswer.Value = strShowAnwser;
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1074  2010-01-24 21:13  Ip2Url\Default.aspx

     文件       1678  2010-01-24 21:14  Ip2Url\Default.aspx.cs

     文件       1489  2010-01-24 16:45  Ip2Url\Ip2Url.sln

    ..A..H.      8704  2010-01-24 21:18  Ip2Url\Ip2Url.suo

     文件       8682  2010-01-24 16:10  Ip2Url\web.config

     目录          0  2010-01-24 16:10  Ip2Url\App_Data

     目录          0  2010-01-24 21:14  Ip2Url

----------- ---------  ---------- -----  ----

                21627                    7


评论

共有 条评论