Sending compressed response in ASP.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:38:56Z http://stackoverflow.com/feeds/question/1016589 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1016589/sending-compressed-response-in-asp-net 0 Sending compressed response in ASP.NET Quango 2009-06-19T06:24:16Z 2009-06-19T06:38:34Z <p>I am running a website on IIS6 for ASP.NET application and enabled compression, which worked fine for the .aspx web pages.</p> <p>What isn't working is downloaded binary files that are transmitted as part of a postback response: e.g. link button is 'download to excel' - user clicks and the code generates a binary file, does a Response.Clear() and then writes the file to the Response.OutputStream.</p> <p>A response is seen by browsers but it is always zero bytes. I assume therefore that web browsers are expecting a compressed response, and as the raw binary isn't a valid compressed stream it fails. I'm puzzled as to why this should be if I've cleared the response - surely the response headers (specifying compression) are also cleared?</p> <p>So two questions arise: </p> <p>1) how do I compress the binary file to send a compressed response? 2) how can I check at runtime to see if IIS compression is enabled?</p> <p>Cheers</p> http://stackoverflow.com/questions/1016589/sending-compressed-response-in-asp-net/1016636#1016636 2 Answer by Uchitha for Sending compressed response in ASP.NET Uchitha 2009-06-19T06:38:34Z 2009-06-19T06:38:34Z <p>I would disable compression and check whether this still works, just to isolate the fact that this is indeed due to IIS compression. I'm telling you that 'cos I'm running a IIS/Compression enabled site which provides PDF files (binary) without a problem. </p> <p>Anyway here's the part of code which works for me.</p> <pre><code> Response.Clear(); Response.ClearHeaders(); Response.AddHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\""); Response.AddHeader("Content-Length", fileInfo.Length.ToString()); Response.AddHeader("Content-transfer-encoding", "8bit"); Response.AddHeader("Cache-Control", "private"); Response.AddHeader("Pragma", "cache"); Response.AddHeader("Expires", "0"); Response.ContentType = "application/pdf"; Response.WriteFile(filePath); Response.Flush(); Response.Close(); HttpContext.Current.ApplicationInstance.CompleteRequest(); </code></pre>