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]f@�흼��{���{��;�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: http://stackoverflow.com/questions/2054223/asp-net-mvc-app-displaying-weird-characters

link|improve this question

Can you use Fiddler or Firebug to see the response? Also, check the eventlog; .NET should be reporting the error there. – mkchandler Oct 18 '10 at 20:41
Fiddler shows the same response as the browser. The error is a simple Exception. I threw it intentionally in this case, but I got the same result with other exception types. – davehauser Oct 18 '10 at 22:39
Do you have any culture or text-encoding types set that could be changing the encoding? Or non-text MIME types in the header? Set in your web server, web.config, or the controller (or any action/authorization filters)? What is the complete header of the HTTP response? – Jon Adams Feb 21 '11 at 16:56
feedback

1 Answer

up vote 6 down vote accepted

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 VaryByCustom option to allow for the different encoding types (none, Gzip, Deflate most likely).

+++ Rick ---

link|improve this answer
Great! thanks a million! – NullOrEmpty Feb 21 at 12:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.