Click here to Skip to main content
15,890,897 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
Hi All,

I am using vs2008,asp.net,c# and sqlserver.

I have a code thats download single image form database in below.
C#
protected void Page_Load(object sender, EventArgs e)
        {
            // Get the file id from the query string
            int id = Convert.ToInt16(Request.QueryString["ID"]);

            // Get the file from the database
            DataTable file = FileUtilities.GetAFile(id);
            DataRow row = file.Rows[0];

            string name = (string)row["Name"];
            string contentType = (string)row["ContentType"];
            Byte[] data = (Byte[])row["Data"];

            // Send the file to the browser
            Response.AddHeader("Content-type", contentType);
            Response.AddHeader("Content-Disposition", "attachment; filename=" + name);
            Response.BinaryWrite(data);
            Response.Flush();
            Response.End();
        } 


But i need to how can download multiple images from database and images should be saved in folder of any drive.

help will be appreciated, give any idea or link

Regards
mukesh
Posted
Updated 26-Apr-12 19:40pm
v2

1 solution

You can not download multiple images at single click. however you need to write code for first create a zip files and add all those files into zip and then download zip file.

Here is the link where you can find more details for same

Creating Zip archives in .NET (without an external library like SharpZipLib)[^]

Thanks,
Imdadhusen
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900