views:

56

answers:

3

Hi Guys,

I was wondering whether anyone knew of any ASP.NET compression modules that can use GZIP without relying on the IIS dynamic compression module ?

We have some content which we want serve up as GZIPPED but we dont want to rely on IIS compression.

Anyone have any ideas?

A: 

If you want to do this in code the .NET 7Zip library supports GZip compression. You could write an HTTPModule ot HTTPHandler that wraps the 7Zip compression library and handle this in code.

Michael Mann
A: 

Do you want to compress aspx output, using code you contro? How about this module?

slolife
+1  A: 

A good one

Building a GZip JavaScript Resource Compression Module for ASP.NET

rahul
hi - basically we serve some JS files - dynamic and static - and we want to render them in either GZIP or DEFLATE - is the module pasted above pretty good to do this or without using IIS?