Hi, i won't to download multi files at this same time using c#, but i don't know how.
Please help.
Hi, i won't to download multi files at this same time using c#, but i don't know how.
Please help.
You should be able to use the WebClient class.
WebClient client = new WebClient();
client.DownloadFileAsync(new Uri("http://test.com/file1"), "C:/Localfile1");
client.DownloadFileAsync(new Uri("http://test.com/file2"), "C:/Localfile2");
If your trying to serve multiple download files on an asp.net post back, I've had alot of success zipping the files together on the fly, and streaming the result as the response.
edit -
This does not seems like what your trying to do, sorry.