ASP.NET MVC: Weird characters in error page

Since I uploaded an updated version of an ASP.NET MVC 1 application to the server, the Yellow Screen of Death has changed to something like this:

��I�%&/m�{J�J��t��$ؐ@�����iG#)�*��eVe][email protected]�흼��{���{��;�N’���?fdl��J�ɞ!���?~|?”��Ey�’)=��y6����h���ͼhR��L�w�|��2=��Ez<����7�:5�<�+oy��:� �T����W�v�<[��~2�g�2��?�ʋ�y�hYՋ������t� _N���M�l�����{�,��Xn���Q�}�����*g�������7�� ~��j’u>K�{�IW4�>�U�w�|=-fYzR-���

When accessing pages with errors directly on the server via Remote Desktop (Windows Server 2008 R2, IE8), IE even tries to download the response but get’s an error (message box).

Anybody encountered this before? Any idea how to solve this?

I also found this question, which seems to be very simliar, but unfortunately has not been answered by now: ASP.NET MVC app displaying weird characters

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

Most likely the screen you’re showing is caused by GZip encoding in your code. You probably are applying a Response.Filter to the GZip/DeflateStream class and intending to encode your content, but then an error occurs and ASP.NET clears your Headers, but leaves the filter intact. The result is that your content is GZip encoded but the browser doesn’t decode it because the Content-Encoding header isn’t set.

To fix this add:

Response.Filter = null

into your Application_Error routine at the top to force any Repsonse filters to clear out.

Another thing that can screw you up is OutputCaching of GZipped content. If any OutputCaching is applied make sure you have the VaryByCustom option to allow for the different encoding types (none, Gzip, Deflate most likely).

+++ Rick —


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x