在asax文件中,此上下文中没有响应

时间:2012-05-18 11:43:10

标签: c#

我有一个仅适用于Firefox的登录页面。它不适用于任何其他浏览器。

当我检查事件日志时,我看到“当前上下文中没有响应”。它告诉我错误在global.asax文件中,在response.redirect行:

void Session_End(object sender, EventArgs e) 
{
     Response.Redirect("~/Login.aspx?li=1");
    // Code that runs when a session ends. 
    // Note: The Session_End event is raised only when the sessionstate mode
    // is set to InProc in the Web.config file. If session mode is set to StateServer 
    // or SQLServer, the event is not raised.

}

可能是什么问题?

我按照建议尝试了httpcontext.Current,但后来我得到了一个N​​ull引用异常,对象引用未设置为对象的实例

谢谢。

2 个答案:

答案 0 :(得分:2)

尝试使用HttpContext.Current.Response它确实有效。

答案 1 :(得分:0)

您是否尝试过使用HttpContext.Current.Response?

快乐的编码!!