Http Compression using a Http Module

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

↓ Add Comment
↓ Add Comment

Comments (0)