标签:计算机名称 ipaddress str request ipaddr 客户端 .net blog ipa
//获取客户端计算机名称 System.Net.IPAddress clientIP = System.Net.IPAddress.Parse(Request.UserHostAddress);//根据目标IP地址获取IP对象 System.Net.IPHostEntry ihe = System.Net.Dns.GetHostEntry(clientIP);//根据IP对象创建主机对象 string clientPCName = ihe.HostName;//获取客户端主机名称
标签:计算机名称 ipaddress str request ipaddr 客户端 .net blog ipa
原文地址:http://www.cnblogs.com/gaocong/p/7457721.html