我试过
Uri uri = HttpContext.Current.Request.Url;
String host = uri.Scheme + Uri.SchemeDelimiter + uri.Host + ":" + uri.Port;
它在我的本地计算机上运行良好,但在发布到IIS7时,有一个例外
System.Web.HttpException: Request is not available in this context
任何人都知道如何实现这一目标?
答案 0 :(得分:60)
当您的Web应用程序启动时,不会处理任何HTTP请求。
您可能希望处理定义Request_BeginRequest(Object Sender,EventArgs e)方法,其中Request上下文可用。
编辑:这是一个代码示例,其灵感来自Mike Volodarsky的博客,Michael Shimmins链接到:
void Application_BeginRequest(Object source, EventArgs e)
{
HttpApplication app = (HttpApplication)source;
var host = FirstRequestInitialisation.Initialise(app.Context);
}
static class FirstRequestInitialisation
{
private static string host = null;
private static Object s_lock = new Object();
// Initialise only on the first request
public static string Initialise(HttpContext context)
{
if (string.IsNullOrEmpty(host))
{
lock (s_lock)
{
if (string.IsNullOrEmpty(host))
{
var uri = context.Request.Url;
host = uri.GetLeftPart(UriPartial.Authority);
}
}
}
return host;
}
}
答案 1 :(得分:9)
接受的答案是好的,但在大多数情况下(如果第一个请求是HTTP请求),您应该更好地使用Session_Start
事件,每20分钟左右每个用户调用一次(不确定如何)会话有效)。每次请求都会被解雇{/ 1}}。
Application_BeginRequest
答案 2 :(得分:2)
如果有人决定真正搜索这个话题,那就回答这个问题......
这适用于任何模式下的应用程序启动...
typeof(HttpContext).GetField("_request", BindingFlags.NonPublic | BindingFlags.Instance).GetValue(HttpContext.Current)