5

我有一个仅适用于 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 但随后出现空引用异常,对象引用未设置为对象的实例

谢谢你。

4

2 回答 2

1

尝试使用HttpContext.Current.Response它肯定会起作用。

于 2012-05-18T11:45:10.697 回答
-1

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

编码快乐!!

于 2012-05-18T11:45:38.900 回答