Http Compression using a Http Module
Posted by Anders Vindberg
in Lunarmedia Blog
on the 30 Apr. 2007 (43,539 views).
It is easier than ever to enable http compression in dotnet 2.0 using an open Http Module from Blowery called HttpCompression. However, one should be aware to exclude a couple of files, in particular axd files as errors has been reported when compressing javascript files. Simply add this to the web.config:
<excludedPaths>
<add path="WebResource.axd"/>
</excludedPaths>
A tutorial on how to use the compression module, see this article