第一种:Request.UserHostAddress; //获取IP
第二种:HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
第三种是获取部署地址的IP:
string strHostName = System.Net.Dns.GetHostName();
string clientIPAddress = System.Net.Dns.GetHostAddresses(strHostName).GetValue(0).ToString();
时间: 2024-10-05 03:42:11