21
4

1 回答 1

34

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 ---

于 2011-04-30T21:58:21.403 回答