通过代理,获取真实的ip
if(Context.Request.ServerVariables["HTTP_VIA"]!=null)
{
ip=Context.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
}
else
{
ip=Context.Request.ServerVariables["REMOTE_ADDR"].ToString();
}
posted on 2006-01-09 09:49
郭汉 阅读(526)
评论(0) 编辑 收藏 引用 所属分类:
Web 开发