I am currently working on a web project where the user can upload files freely by clicking on a link (a href tag) :
textHTML.Append("<a href='download.aspx?file=" + PathFile[i] + "' title='" + Title[i] + " (" + fileType + ", " + fileSize + ")" + "'>" + _Download + " <font color=\"#999999\">(" + Language[i] + ")</font></a>");
in the download.aspx page:
Response.ContentType = "Application/pdf";
Response.AppendHeader("Content-Disposition", "attachment; filename=" + Request["file"]);
Response.TransmitFile("../../img/content/csr_dc_documents/" + Request["file"]);
Response.End();
I'm trying to find the best solution to offer the user to download as much as files he wants at the same time
So my question is the following: is it possible to create a zip folder containing all the files he selects ? and this without saving anything in the server? Thanks in advance for your advises