download more than one file at a time

  • Thread starter Thread starter ajash.pv
  • Start date Start date
A

ajash.pv

i wana the source code of down load more than one file at a
time("filesave as" show only one time and i wana to store more than
one file at same destination)

any way for this....



Dim file As System.IO.FileInfo=New System.IO.FileInfo("path of file")
Response.AddHeader("Content-Disposition", "attachment; filename=" &
file.Name)
Response.Write(file.FullName)


this code can down load only one file @ a time but i want to download
more than one file at a time(show "save as" only one time )

plz..... help
 
i wana the source code of down load more than one file at a
time("filesave as" show only one time and i wana to store more than
one file at same destination)

any way for this....

Dim file As System.IO.FileInfo=New System.IO.FileInfo("path of file")
Response.AddHeader("Content-Disposition", "attachment; filename=" &
file.Name)
Response.Write(file.FullName)

this code can down load only one file @ a time but i want to download
more than one file at a time(show "save as" only one time )

plz..... help

You could use the low-tech method of putting all the files you want to
download in a single zip file...
 
Back
Top