downloading multiple files

F

fatima.issawi

Hello,

Is it possible to download multiple files? Right now I am using the
following code in a loop, but I can only save one file - the first one.

Response.Clear();
Response.AddHeader("Content-Disposition", "attachment;
filename=" + fileName);
Response.AddHeader("Content-Length", "10");
Response.ContentType = "application/octet-stream";
Response.WriteFile(paths);
//Response.End();

Is there something I am doing wrong? Is there another way of
implementing this that I am unaware of? I am new to this, so any help
will be appreciated.

Btw, I did read in a post that zipping the files into one file would
work, but I cannot implement it this way.

Thanks!
Fatima
 
B

Bruce Barker

No, its not supported by the browser. The most common approach is to zip the
files into one file.

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,071
Latest member
MetabolicSolutionsKeto

Latest Threads

Top