码迷,mamicode.com
首页 > 其他好文 > 详细

获取客户端、服务器、本地IP地址

时间:2014-06-26 23:47:30      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:class   blog   http   ext   get   string   

//获取客户端、服务器、本地IP地址
        public static string getIPAddress()
        {
            ////本地IP
            //string address = System.Net.Dns.GetHostAddresses(System.Net.Dns.GetHostName()).GetValue(2).ToString();//IP4 地址
            ////本地电脑名称
            //string addname = System.Net.Dns.GetHostName().ToString(); 

            //客户端IP
            HttpRequest Request = HttpContext.Current.Request;
            string clientIP = Request.UserHostAddress;

            return clientIP;
        }

  

获取客户端、服务器、本地IP地址,布布扣,bubuko.com

获取客户端、服务器、本地IP地址

标签:class   blog   http   ext   get   string   

原文地址:http://www.cnblogs.com/lengv10/p/3807740.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!