Connecting Tech Pros Worldwide Forums | Help | Site Map

download more than one file at a time

ajash.pv@gmail.com
Guest
 
Posts: n/a
#1: Mar 2 '07
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


Rad [Visual C# MVP]
Guest
 
Posts: n/a
#2: Mar 3 '07

re: download more than one file at a time


On 2 Mar 2007 04:37:07 -0800, ajash.pv@gmail.com wrote:
Quote:
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...
--
Bits.Bytes
http://bytes.thinkersroom.com
Closed Thread