Why aren't my ASPX pages compressed with Gzip enabled?
So, I have configured gzip compression in IIS 6.
I have enabled compression for both static files and application files. I have set up a 1.024 MB temporary directory.
I modified Metbase to include: htm, html, js, css, aspx, xml
I set the compression level to 9.
I added a WSE called HttoCompression and installed it in gzip.dll to set it to Allow.
I reset IIS.
I notice that my css, xml and js files are compressed, but ASPX pages are not.
Did I miss something?
source to share
By default, the static file types .txt, .htm, and .html and the dynamic file types .exe, .dll, and .asp are set for compression in IIS.
So, to add other file types, you need to configure your own settings for each compression option by editing the metabase, or alternatively - in the case of a compression directory - using IIS Manager.
For more clarification plz visit http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/25d2170b-09c0-45fd-8da4-898cf9a7d568.mspx?mfr=true
source to share
You will need to go and edit the IIS metadata file. If you don't want to rename the IIS / server after you have done so, right click on edit live metabase in IIS
From the MS article you can get some of the patch results.
To put it simply (from Mr. Atwood), it's basically just cut and paste the current values. http://www.codinghorror.com/blog/archives/000059.html
source to share