By tag: GZip
0
kicks
Compress / Gzip files in .Net 2.0 using C# (System.IO.Compression)
Zip multiples files in folder using Asp.net 2.0 C# System.IO.Compression class progammatically
0
kicks
More on GZip compression with ASP.NET Content
If you have a hosted site, sometimes you cannot change settings on the IIS server. This article shows you how to enable GZip compression directly within ASP, bypassing the server settings. I used this code on my site and it works great.
0
kicks
An HTTP compression module in ASP.NET 2.0
The new System.IO.Compression namespace in .NET 2.0 makes it easy to implement HTTP compression without having to touch IIS. The best thing about it is that you no longer need any third party compression components, it’s all build directly into .NET Framework. There are different ways to implement t...
0
kicks
Compression and performance - GZip vs. Deflate
First I tested the GZipStream and then the DeflateStream. I expected a minor difference because the two compression methods are different, but the result astonished me. I measured the DeflateStream to 41% faster than GZip.