感谢您阅读我的博客,如果您现在工作、学习累了或者疲惫了,不妨聆听一下音乐,它能够减轻你的疲劳,还能够带给您一种舒适愉悦的心情。如果您认为这篇文章还不错或者有所收获,您可以在页面 右侧和底部 扫描二维码 打赏我,您的鼓励是我继续写作、分享的最大动力!

MVC中获取客户端IPV4地址帮助类

using System;
using System.Web;

namespace CustPoWeb
{
    /// <summary>
    ///     MVC中获取客户端IPV4地址帮助类
    ///     LDH @ 2021-12-31
    /// </summary>
    public static class IpHelper
    {
        /// <summary>
        ///     获取Web客户端IP地址
        ///     LDH @ 2021-12-31
        /// </summary>
        /// <returns></returns>
        public static string GetWebClientIp()
        {
            var userIP = "未获取用户IP";

            try
            {
                if (HttpContext.Current == null) return "";

                var customerIp = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];

                if (!string.IsNullOrEmpty(customerIp)) return customerIp;

                if (HttpContext.Current.Request.ServerVariables["HTTP_VIA"] != null)
                {
                    customerIp = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];

                    if (customerIp == null)
                        customerIp = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
                }
                else
                {
                    customerIp = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
                }

                if (string.Compare(customerIp, "unknown", StringComparison.OrdinalIgnoreCase) == 0
                    || string.IsNullOrEmpty(customerIp))
                    return HttpContext.Current.Request.UserHostAddress;

                return customerIp;
            }
            catch
            {
                // ignored
            }

            return userIP;
        }
    }
}

 

posted @ 2021-12-31 12:59  Love In Winter  阅读(73)  评论(0编辑  收藏  举报
作者: LifeDecidesHappiness
出处: http://www.cnblogs.com/LifeDecidesHappiness/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,否则保留追究法律责任的权利,且在文章页面明显位置给出原文连接,如有问题,可以通过以下邮箱地址 2468881301@qq.com  联系我,非常感谢。
踏实做一个为人民服务的搬运工!
如果您认为这篇文章还不错或者有所收获,您可以通过右边的“打赏”功能,您的支持和鼓励是我继续写作、分享的最大动力!

点击关注不迷路,让我带你上高速!