我不知道为什么将代码部署到IIS7时Response.Redirect无法正常工作?始终显示白色/黄色错误页面,而不是我的Errors.aspx。但是,当在我的计算机上使用Visual Studio运行调试时,它运行得很好吗?
protected void Application_Error(object sender, EventArgs e)
{
ILog log = LogManager.GetLogger(typeof(Global).Name);
Exception objErr = Server.GetLastError().GetBaseException();
log.Error(objErr);
string err = "Error Caught in Application_Error event\n" +
"\nError Message:" + objErr.Message.ToString() +
"\nStack Trace:" + objErr.StackTrace.ToString();
EventLog.WriteEntry("Kiosk", err, EventLogEntryType.Error);
Server.ClearError();
Response.Redirect("~/Error.aspx", false);
}
最佳答案
我遇到了同样的问题,并通过以下方法解决了问题:
HttpContext.Current.ClearError();
Response.Redirect("~/Error.aspx", false);
return;