标签: c# asp.net iis-7 ip-address
如何获取运行asp.net应用程序的IIS框的ip地址?我试过了:
HttpContext.Current.Request.ServerVariables["SERVER_NAME"];
这一切都可能吗?
答案 0 :(得分:0)
Here是所有变量:
HttpContext.Current.Request.UserHostAddress; should work
Link 1