本文介绍了在asp.net中获取IP地址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

如果有人从我的网站上下载有关他/她的活动报告到网站,那么我如何获得该计算机的IP?

hello,

If from my website someone is downloading report about his/her activities towards website, then how could i get the ip of that computer?

推荐答案


public string fnGetClientIP()
{
    string ClientIP= string.Empty;
    string ip = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
    if (!string.IsNullOrEmpty(ip))
    {
        string[] ipRange = ip.Split(',');
        int le = ipRange.Length - 1;
        ClientIP = ipRange[0];
    }
    else
    {
        ClientIP = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
    }

    return ClientIP;
}




--Amit




--Amit


这篇关于在asp.net中获取IP地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 16:10