ASP.net应用程序中的奇怪错误屏幕

时间:2012-10-31 05:19:26

标签: c# asp.net error-handling

我正在开发一些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中看到了错误屏幕。任何人都面临同样的问题,并解决了问题和解决方案吗?

2 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分: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");
}