Turn off HTTP compression from web.config
September 01, 2010
ASP.NET
Add the following lines into your web.config to disable HTTP/Gzip compression in IIS7:
<system.webServer>
<urlCompression doStaticCompression="false" doDynamicCompression="false"/>
</system.webServer>
Related posts: