Raelshark
Raelshark

Reputation: 3075

Is it possible to use GZIP compression on classic ASP pages?

We've got a classic ASP application that is putting out some very large reports, where the resulting HTML is several MBs. We've made a lot of progress in trimming this down by reducing extraneous HTML, but I'd like to know if there's any way to enable GZIP compression on these dynamic .asp pages. I'm sure compressing them would be an enormous benefit to the file size.

All of the GZIP compression information I've seen only talks about supporting files or .aspx pages.

Thanks.

Upvotes: 2

Views: 4818

Answers (2)

Espen
Espen

Reputation: 2158

I recommend using HttpZip from Port 80 Software. It basically just enables compression in IIS but from a GUI instead of getting into the metabase. I used it in a web-farm for a big enterprise ASP application.

Upvotes: 0

Arnout
Arnout

Reputation: 2790

Sure, that's just a matter of turning on compression in IIS. See this MSDN page for example.

Upvotes: 6

Related Questions