Application_Error 不适用于集成模式,但适用于类模式。我会使用集成模式和类模式将请求转移到错误页面。可以这样做还是我必须使用 HTTP 模块才能支持这两种模式?
protected void Application_Error(object sender, EventArgs e)
{
if (Context != null && Context.IsCustomErrorEnabled)
{
Server.Transfer("~/Error.aspx", false);
}
}