.Net获取IP地址
来自森大科技官方博客
http://www.cnsendblog.com/index.php/?p=292
GPS平台、网站建设、软件开发、系统运维,找森大网络科技!
http://cnsendnet.taobao.com
成都创新互联公司专注于资源网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供资源营销型网站建设,资源网站制作、资源网页设计、资源网站官网定制、成都微信小程序服务,打造资源网络公司原创品牌,更为您提供资源网站排名全网营销落地服务。
1.获取本机IP
2.获取网页客户端IP
///
/// 获取IPv4地址
///
///
public static string GetIP4Address(HttpRequest request = null)
{
Func f = e => e.AddressFamily.ToString() == "InterNetwork";
IPAddress ipa = DNS.GetHostAddresses((request ?? HttpContext.Current.Request).UserHostAddress).FirstOrDefault(f)
?? Dns.GetHostAddresses(Dns.GetHostName()).FirstOrDefault(f);
if (ipa != null)
{
return ipa.ToString();
}
return HttpContext.Current.Request.UserHostAddress;
}
来自森大科技官方博客
http://www.cnsendblog.com/index.php/?p=292
GPS平台、网站建设、软件开发、系统运维,找森大网络科技!
http://cnsendnet.taobao.com
本文题目:.Net获取IP地址
分享链接:http://scyingshan.cn/article/ihhphg.html