Yes, I agree you should zip the files into a single file.
I've heard of people having success with this code:
http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx
Or you could consider calling a command line utility like this:
http://www.i386.info/software/zip23xn.zip
Or you could consider a 3rd party component such as this:
http://www.xceedsoft.com/products/zipnet

Signature
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
Thank you for replying, Peter & Steve...
I have thought about zipping all the user selected files into a single one,
however that would take alot more overhead (copy the files to a temp folder,
zip them, and delete them after the download is done. Also, at the client
side, the user must unzip the file before he could use it... )
Third party components are too expensive for me.... Thus I always try not to
go third party. Besides, the learning is really more important. If I go 3rd
party, I'm not going to learn much how somethining got done.
So, is there a way to get the client's save path in ASP.NET? That is, when
the Save dialog pops up in the browser and the user chooses a location to
save then click OK, instead of doing Response.WriteFile(fileName), I just
want to grap the save path and then FTP the files to that directory at the
client PC...
Thanks again for the responses.
Stanav.
> Yes, I agree you should zip the files into a single file.
>
[quoted text clipped - 32 lines]
>>>
>>> Stanav.
Steve C. Orr [MVP, MCSD] - 29 Oct 2005 22:49 GMT
There is new improved compression support in the new .NET framework 2.0 so
you don't have to buy a 3rd party component.
System.IO.Compression
More info:
http://www.developer.com/net/net/article.php/3510026
Security restrictions would prevent the design you proposed - direct access
to a user's hard drive is forbidden for web applications, and for good
reasons! The only way you could do that is with a thick client such as an
ActiveX control, which the user would have to accept despite security
warnings.

Signature
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
> Thank you for replying, Peter & Steve...
> I have thought about zipping all the user selected files into a single
[quoted text clipped - 50 lines]
>>>>
>>>> Stanav.