Forum Replies Created

Viewing 1 replies (of 1 total)
  • 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.

Viewing 1 replies (of 1 total)