vote up 0 vote down star

I am developing an application using asp.net 2.0 (C#), in which I am trying to implement the compression of my files, so that performance of my website will improve.

For that I have added a code in my Global.asax file to compress all requests (.aspx, .js, .css) But when I am running my application it works well for first time then the CSS is not loading and web page is not rendering properly.

Why its happening??

Edited (added my compression code)

My compression code of Global.asax file is as follows:

void Application_BeginRequest()
    {
        HttpContext incoming = HttpContext.Current;
        string oldpath = incoming.Request.Path.ToLower();

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

Also please let me know if there is any other better way to do the same, using the Global.asax file, because I don't have access of IIS Settings and also I don't have permission to implement the HttpModule, that is why I am using Global.asax file.

Thanks

flag

77% accept rate
id post your compression code if you want people to diagnose it ;) – Andrew Bullock Feb 21 at 15:22
addec compression code! please diagnose it for better performance! – Prashant Feb 21 at 15:32

1 Answer

vote up 1 vote down check

For static files, you can configure IIS to do the compression for you, no need to implement it yourself.

In IIS6 this is a global settings (properties of the "Web Sites" node in IIS manager, service tab).

In IIS7 this is set on a per folder basis, and also it will compress dynamic content for you. In the case of IIS7 it can either be set my the IIS Manager or by the web.config file:

<configuration>
  <system.webServer>
    <urlCompression doDynamicCompression="true" DoStaticCompression="true" />
  </system.webServer>
</configuration>
link|flag
I can't caz I don't have access to IIS settings as I am on Shared Hosting server. – Prashant Feb 21 at 15:33
In IIS7 you will be able to set this in a web.config file (all IIS7 settings are just web.config entries). For IIS6 that would be a problem. Which version of IIS are you using? – Richard Feb 21 at 15:46
I am using IIS7, please tell me what settings I have to add in we.config file. Please ?? – Prashant Feb 21 at 16:35
Done, the link takes you to the reference for <system.webServer> which is the section used for IIS7 configuration not relating directly to ASP.NET. – Richard Feb 21 at 16:43
Yups, done. But in the urlCompression tag "doDynamicCompression" is false. When I am setting it truw then My pages are gzipped, else they are not. – Prashant Feb 21 at 17:03
show 4 more comments

Your Answer

Get an OpenID
or

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