Click here to Skip to main content
15,883,558 members
Articles / Web Development / HTML

Sending Compressed HTTP Reponse in ASP.NET Web Application

Rate me:
Please Sign up or sign in to vote.
4.29/5 (9 votes)
6 Nov 2009CPL1 min read 26K   400   38  
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:

C#
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".

C#
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.

C#
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)


Written By
Team Leader Leverate
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --