Stories recently tagged with 'GZip'

Compress / Gzip files in .Net 2.0 using C# (System.IO.Compression)(webtips.co.in)

submitted by webtipswebtips(265) 3 years, 4 months ago

Zip multiples files in folder using Asp.net 2.0 C# System.IO.Compression class progammatically read more...

add a comment |category: |Views: 329

tags: another

More on GZip compression with ASP.NET Content(west-wind.com)

submitted by samdnpsamdnp(975) 3 years, 10 months ago

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. read more...

1 comment |category: |Views: 163

tags: another

An HTTP compression module in ASP.NET 2.0(madskristensen.dk)

submitted by crpietschmanncrpietschmann(11.3k) 4 years, 7 months ago

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 the compression but I think an HttpModule is the right choice for this feature. Let's create one and call it CompressionModule. read more...

1 comment |category: |Views: 325

tags: another

Compression and performance - GZip vs. Deflate(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 2 months ago

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. read more...

1 comment |category: |Views: 430

tags: another