1

我正在开发一些 ASP.NET 应用程序。如果出现故障或错误,我会收到一些奇怪的错误屏幕。错误页面显示如下内容:

��`I�%&/m�{J�J��t��`$ؐ@�������iG#)�*��eVe]f@�흼��{����{����;�N'���?
\fdl��J�ɞ!���?~|?"��Ey�')=��y6�����h��贮
�:�V�˼n��E:��,m�Wy�����<�ӶJ�e;~|W^�`4�u�A:�f��/>

等等....

该应用程序当前处于测试阶段,因此我已从 web.config 中看到错误屏幕。有谁遇到过同样的问题,并得到了问题和解决方案?

4

2 回答 2

2

感谢 Rick Strahl 的解决方案,以及 @Andrew Sklyarevsky 的参考:D

参考和完整说明:http ://www.west-wind.com/weblog/posts/2011/May/02/ASPNET-GZip-Encoding-Caveats

我解决了这个问题,因此解决方案是将以下代码添加到Global.asax

protected void Application_Error(object sender, EventArgs e)
{
    // Remove any special filtering especially GZip filtering
    Response.Filter = null;
…
}

甚至更好

protected void Application_PreSendRequestHeaders()
{
// ensure that if GZip/Deflate Encoding is applied that headers are set
// also works when error occurs if filters are still active
HttpResponse response = HttpContext.Current.Response;
if (response.Filter is GZipStream && response.Headers["Content-encoding"] != "gzip")
    response.AppendHeader("Content-encoding", "gzip");
else if (response.Filter is DeflateStream && response.Headers["Content-encoding"] != "deflate")
    response.AppendHeader("Content-encoding", "deflate");
}
于 2012-10-31T06:30:59.243 回答
2

检查您正在处理的 ASP.NET 应用程序是否使用某种形式的自动 GZip 压缩,您的错误页面非常让人想起 Rick Strahl 在这里描述的内容:http ://www.west-wind.com/weblog/posts/2011 /May/02/ASPNET-GZip-Encoding-Caveats。该博客文章中也有一个解决方案。

于 2012-10-31T05:33:55.047 回答