我在我的网站上实现了
Rick Strahl’s GZipEncodePage方法,它对网站本身很好.但是,当我的代码引发异常时,“服务器错误”页面看起来像这样:
解决方法
我明白这个问题真的是过时的.
在Application_Error中,从响应中删除过滤器,像这样
protected void Application_Error(Object sender,EventArgs e) { HttpApplication app = sender as HttpApplication; app.Response.Filter = null; }
希望这有助于任何人.