zoukankan      html  css  js  c++  java
  • 获取客户端Ip

         /// <summary>  
            /// 获取客户端Ip  
            /// </summary>  
            /// <returns></returns>  
            public static string GetClientIp()
            {
                String clientIP = string.Empty;
                if (System.Web.HttpContext.Current != null)
                {
                    clientIP = System.Web.HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
                    if (string.IsNullOrEmpty(clientIP) || (clientIP.ToLower() == "unknown"))
                    {
                        clientIP = System.Web.HttpContext.Current.Request.ServerVariables["HTTP_X_REAL_IP"];
                        if (string.IsNullOrEmpty(clientIP))
                        {
                            clientIP = System.Web.HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
                        }
                    }
                    else
                    {
                        clientIP = clientIP.Split(',')[0];
                    }
                }
                return clientIP;
            }
  • 相关阅读:
    以太坊:用 Solidity 写测试用例
    以太坊:测试合约
    以太坊:支持 Quorum 开发
    以太坊:编写外部脚本
    以太坊:使用控制台
    以太坊:调试合约
    Rancher 2.x 搭建及管理 Kubernetes 集群
    我的友情链接
    我的友情链接
    我的友情链接
  • 原文地址:https://www.cnblogs.com/XuPengLB/p/5689188.html
Copyright © 2011-2022 走看看