If the "Transformer" response inspector does not show that the content
is encoded with GZIP or DEFLATE, then generally speaking that means
that the server hasn't compressed that response.
This could occur for any number of reasons:
1> Some servers will not compress their first response for a given
file; they serve the first response uncompressed and compress the
response in parallel and cache it for the next request
2> You may have a proxy between you and the server which is
decompressing the response.
3> You may have client software (e.g. certain security software of
dubious quality) which is stripping out the request's Accept-Encoding
header.
4> You may be looking at a file type which IIS typically will not
compress (e.g. an image)
Also possible:
5> You may have enabled (or written) a rule in Fiddler which is
automatically decompressing the response (e.g. the AutoDecode toolbar
button).
-Eric