38.(c#)取远程用户IP地址
作者:互联网
1.String user_IP=Request.ServerVariables["REMOTE_ADDR"].ToString();
取远程用户IP地址
2.//穿过代理服务器取远程用户真实IP地址:
if(Request.ServerVariables["HTTP_VIA"]!=null){
string user_IP=Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
}else{
string user_IP=Request.ServerVariables["REMOTE_ADDR"].ToString();
}
标签:38,c#,IP,ServerVariables,Request,ToString,user,IP地址 来源: https://www.cnblogs.com/sweettie/p/15053828.html