private string GetIpAddress(HttpContext context)
{
//throw new NotImplementedException();
if (context.Request.ServerVariables["HTTP_VIA"] != null)
{
//客户端使用的是代理服务器
return context.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
}
else
{
//客户端未使用代理服务器
return context.Request.ServerVariables["REMOTE_ADDR"].ToString();
}
//return "localhost";
}
ASPX获取客户端IP地址
最新推荐文章于 2024-06-12 18:25:28 发布