David
Sat May 28 16:34:36 CDT 2005
With IIS6, there are two types of compression "schemes" (static and dynamic)
that can be applied to any URL extension served by IIS. So you enable static
compression on .js extension, then if the browser makes a request for .js
URL and indicates that it supports compression, IIS will send it as
compressed.
By default, IIS6 comes with compression turned off and defined for a small
set of URLs (basically .htm, .html, .txt, .asp, .dll, .exe). You can of
course choose the applicable extensions as well as static/dynamic scheme and
the compression algorithm.
--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Rob Nicholson" <informed@community.nospam> wrote in message
news:efTiLl5YFHA.2796@TK2MSFTNGP09.phx.gbl...
IIS 6 has HTTP compression built in and other 3rd party tools like IIS
Accelerator add the same functionality to IIS 5 and IIS 4. IIS Accelerator
works great giving us 80% compression of some pages.
The question is, does this compression apply to included JavaScript:
<script language="javascript" src="PeopleScreen.js"></script>
Will that PeopleScreen.js file get compressed as well?
Thanks, Rob.