Click here to Skip to main content
Licence CPL
First Posted 30 Oct 2009
Views 8,680
Downloads 132
Bookmarked 35 times

Sending Compressed HTTP Reponse in ASP.NET Web Application

By | 6 Nov 2009 | Article
Shows how to use the Response.Filter to send a compressed response in an ASP.NET web application
Sample Image - maximum width is 600 pixels

Introduction

This article will show you how to send a compressed HTTP response.

This will work on any file or response that you're sending but we'll try to avoid compressing very small files or files that are already compressed (like .jpeg)

Background

At my work, I have to send big XML and CSV files to the user. These files can be compressed to much smaller sizes.

One solution is to save the XML as a file in a temporary location on the server, zip it, and then send it to the user.

In this article, I'll show a much better solution for the problem. We'll send the XML as a compressed stream directly to the browser.

Using the Code

This code line will make sure that the browser will open the save file dialog when sending the file:

Response.AppendHeader("Content-Disposition", "attachment; filename=MyFile.xml");

Note that if you don't want the user to download a file, just send the response compress to avoid using this line of code.

The main part of the is code in the SetResponseCompression() method.

First we have to check that the browser supports compression. We'll check the 'Accept-Encoding' header in the request.

A typical header looks like "gzip,deflate".

string acceptEncoding = Request.Headers["Accept-Encoding"].ToLower();
    if (acceptEncoding.Contains("gzip"))
	{ .... 

The next lines set the content encoding to 'gzip' and sets a GZipStream as the Response Filter.

This way the response will be sent as GZip stream and the header will say to the browser that this is a GZip and the browser will know how to open it.

Response.AppendHeader("Content-Encoding", "gzip");
Response.Filter = new GZipStream(Response.Filter, CompressionMode.Compress);

You can use SetResponseCompression() in any page. This will make the response sent compressed.

History

  • 31st October, 2009: Initial version

License

This article, along with any associated source code and files, is licensed under The Common Public License Version 1.0 (CPL)

About the Author

Maxim Novak

Team Leader
Leverate
Israel Israel

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 6 Nov 2009
Article Copyright 2009 by Maxim Novak
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid