2

有谁知道是否有一种好的编程方式(不使用 CustomError 设置)来捕获/处理来自 IIS7 上集成管道模式下的 StaticFileModule 的 404 错误?

4

1 回答 1

0

您是否尝试过覆盖 Global.asax.cs 中的 HttpApplication.Error 事件:

    protected void Application_Error (object sender, EventArgs e)
    {
        HttpException httpException = Context.Error as HttpException;
        if (httpException != null)
        {
            switch (httpException.GetHttpCode ())
            {
                case 404:
                    // do stuff here
                    //Server.ClearError ();
                    break;
            }
        }
    }
于 2011-05-11T20:46:49.473 回答