资源简介
获得主机域名及其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
- 上一篇:基于C/S模式的学生信息管理系统
- 下一篇:小型无线局域网系统设计
相关资源
- win10 快速切换ip 设置ip为公司网络或自
- dr.com5.2.zip
- Siliphen的CSV文件格式解析器ver2
- 嵌入式_STM32_期末复习.zip
- CSS表格边框50多种精美标签样式(边框
- 基于ipiq算法的三相四线制谐波电流检
- tech_video.zip
- W5500 TCP/IP SPI发送控制
- 模拟MIPS流水线处理器的verilog源代码
- QT串口编程库--qextserialport-1.2win-alpha
- 杭电 计算机网络 实验 路由rip配置
- source.zip
- IPcamera Test
- myeclipse 2015 stable 3.0
- 用zlib库在内存中解压或压缩http会话中
- Codec_Setup3.1.zip
- ws.zip
- 新建文本文档.zip
- 疫情地图.zip
- eclipse+JDK191785
- DDOSAttack.zip
- eclipse 4.7
- 华为HCIP认证,2020年10月27日最新题库
- 微软MSCOCO数据集 train2017.zip 百度云分
- 高德地图源等.zip
- 小白福音,零基础入门软件测试首选
- iphoneX Axure分层模板,所有原件可随意
- plan.zip
- sirweasley_298532.zip
- stereo_modefilt.zip
评论
共有 条评论