vote up 4 vote down star
5

Hi,

I am trying to implement GZip compression for my asp.net page (including my CSS and JS files). I tried the following code, but it only compresses my .aspx page (found it from YSlow)

HttpContext context = HttpContext.Current;
context.Response.Filter = new GZipStream(context.Response.Filter, CompressionMode.Compress);
HttpContext.Current.Response.AppendHeader("Content-encoding", "gzip");
HttpContext.Current.Response.Cache.VaryByHeaders["Accept-encoding"] = true;

The above code is only compressing my .aspx page code (markup) not the CSS and JS files which is included as external files. Please tell me how can I implement GZip compression in ASP.NET using code (because I am on shared hosting server where I don't have access to IIS Server configurations). And also in the above code I am not getting the last two lines, why they are used and what's the purpose of these lines. Please explain!

Thanks

flag

78% accept rate

5 Answers

vote up 5 vote down

For compressing JS & CSS files you actually have to handle that at the IIS level, since these files are rendered directly without the ASP.NET runtime.

You could make a JSX & CSSX extension mapping in IIS to the aspnet_isapi.dll and then take advantage of your zip code, but IIS is likely to do a better job of this for you.

The content-encoding header tells the browser that it needs to unzip the content before rendering. Some browsers are smart enough to figure this out anyway, based on the shape of the content, but it's better to just tell it.

The Accept-encoding cache setting is there so that a cached version of the gzipped content won't be sent to a browser that requested only text/html.

link|flag
Hi @Ben, Can you please tell me how to compress my files using IIS, what all settings I have to perform, Although I don't have access to IIS configurations, but I'll try to do it. Please tell me how to compress files using IIS ?? Thanks! – Prashant Feb 16 at 6:15
vote up 1 vote down

To answer your last question. Those two lines set HTTP headers for the response sent back to the browser. Content-Encoding tells the browser that the response is encoded as gzip and it needs to be decoded. The last line adds Accept-Encoding to the Vary header. With this the browser or proxies can determine whether the response was unique or is influenced by certain other headers and adjust their caching.

link|flag
vote up 1 vote down

For your first question: http://msmvps.com/blogs/omar/archive/2008/06/30/deploy-asp-net-mvc-on-iis-6-solve-404-compression-and-performance-problems.aspx says it better than I can myself,

And he supplies downloadable code too...

link|flag
I am using ASP.NET 2.0 Can i use this sample in my application. Or Do I need ASP.NET MVC to use this sample ??? – Prashant Feb 16 at 6:13
vote up 3 vote down

This is a good link on compressing dynamic/static content and showing you how to verify using fiddler.

HTTP COMPRESSION in IIS 6 and IIS 7

link|flag
vote up 1 vote down

In IIS7 all requests go to .net, so you would have to create an HttpModule that added those headers to all responses.

Without IIS7, and on shared hosting, you would have to creare a handler that mapped a .net file extention that you are not using (like .asmx) and in the web.config specify that .asmx files go to your HttpHandler which is set to rewrite the path to .jpg or whatever and set the header there too.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.