DotNetShoutout - Stories tagged with encoding
4
Shouts

ASP.NET GZip Encoding Caveats - Rick Strahl's Web Log

published 745 days, 16 hours, 54 minutes ago posted by iftekharahmedamitiftekharahmedamit 747 days, 17 hours, 20 minutes ago
Wednesday, May 04, 2011 12:54:12 PM GMT Monday, May 02, 2011 12:27:37 PM GMT
GZip encoding in ASP.NET is pretty easy to accomplish using the built-in GZipStream and DeflateStream classes and applying them to the Response.Filter property.  While applying GZip and Deflate behavior is pretty easy there are a few caveats that you have watch out for as I found out today for myself with an application that was throwing up some garbage data. But before looking at caveats let’s review GZip implementation for ASP.NET.ASP.NET GZip/Deflate Basics Response filters basically are applied to t... (more)
category: Web Dev | clicked: 2 | 1 comment | | source: www.west-wind.com
tags: GZip, Compression, encoding, ASP.NET