Multiple Downloads in ASP.Net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
Is it possible to download multiple documents in one go in ASP.Net ?

My requirement is something like this :
I have a checkbox list with a list of documents. User can select one or more
check boxes and then the save dialog box should pop up only one for selecting
the directory and all the selected files should be downloaded to selected
directory.
 
Hi Naveen,

First of all, I would like to confirm my understanding of your issue. From
your description, I understand that you need to download multiple files
with one http request in an ASP.NET page. If there is any misunderstanding,
please feel free to let me know.

As far as I know, HTTP only allows one download per request, so the
simpliest way to achieve the goal is to use compression software to put the
serveral files to one package. However, the user must have some software to
decompress the package after downloading. Patrice has provided us with a
good example.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
Back
Top