Create ZIP Files From An ASP.NET Framework Application | CodeGuru

Create ZIP Files From An ASP.NET Framework Application

A ZIP file is a popular, decades-old file format used for file compression and archiving. Commonly, such files have a .zip extension and are used to reduce the size of one or more files and/or to archive multiple files and folders into a single file. Additionally, the contents of a ZIP file can optionally be […]

Written By
CodeGuru Staff
CodeGuru Staff
Sep 29, 2010
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

A ZIP file is a popular, decades-old file format
used for file compression and archiving. Commonly, such files have a .zip extension and are used to reduce the size of one or
more files and/or to archive multiple files and folders into a single file. Additionally, the contents of a ZIP file can
optionally be encrypted and viewable only by those with the password. Both Microsoft’s Windows and Apple’s Mac OS provide
built-in operating system support for opening, reading, and creating ZIP files.

In a recent project I needed to create ZIP files from an ASP.NET application on the fly. Specifically, there was a web page
that listed a series of data files that were created by an external process. Users visiting this page select a file to
download, which then displays a dialog box in their browser, allowing them to open the file or save it to their hard drive.
This user interface worked for most of our users, as they were only interested in downloading one or two files at most.
However, some of our users needed to download upwards of 20 files. For them, clicking a download link, saving it to their
hard drive, and repeating, 20 times, was frustrating and time consuming. To improve this user interface we created the notion
of “download profiles,” which allow users to associate a name – like “Accounting Files” – with a collection of file types
that are available for download. After creating a “download profile,” a user could then choose to download all available
files that belong to that profile. This would create a ZIP file with the appropriate files and display a dialog box in the
user’s browser, allowing them to open or save the ZIP. With this enhancement, our power users can now download their 20 files
with one mouse click.

This ASP.NET tutorial starts with a look at different ways to create ZIP files in an ASP.NET application,
but then focuses on using the free and open-source DotNetZip
library
. To read the rest of this ASP.NET tutorial, Create ZIP Files From An ASP.NET Framework
Application, click here
.

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.