I've been doing a lot of reading about compressing your servers output stream.
Before gzip compression, the bink.nu homepage was about 321k! This means that it would take about 89 seconds for a normal 56k user to download the page.
After gzip compression, the page is 79k! Now it takes the same 56k user 22 seconds to download the page.
If your server can support a little extra load (to compress the output stream), then I highly reccomend using a output stream compression engine!
Here is a list of .NET/ISAPI (for IIS) modules that I'm aware of:
It's usually on by default, but if it isn't, you can add/uncomment it within so it reads like this:
[indent]
AddEncoding x-compress Z
AddEncoding x-gzip gz tgz[/indent]
If you don't have that module loaded (mod_mime.c) then it won't do you any good, so check the Modules section to ensire it's being loaded.