如何获取登录用户的IP地址,怎么获取用户的ip

首页 > 时尚 > 作者:YD1662025-06-27 14:54:50

如何获取登录用户的IP地址,怎么获取用户的ip(1)

public static string GetIP() { string ip; if (System.Web.HttpContext.Current.Request.ServerVariables["HTTP_VIA"] != null) { ip = System.Web.HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString(); } else { ip = System.Web.HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"].ToString(); } return ip; }

栏目热文

文档排行

本站推荐

Copyright © 2018 - 2021 www.yd166.com., All Rights Reserved.