Is there anyway to download multiple files from an ASP.NET page?
What I want is, the method for downloading multiple files from an ASP.NET page without prompting the user with Save dialog box, the files should be get downloaded into some particular location in the client's machine (where the ASP.NET page is browsed).
I tried creating an ActiveX control in VB6 for getting the response stream from ASP.NET page and storing locally with some file names. And int the page, I tried Response.WriteFile method to write the file to the response stream with the content type set to octectstream.
Still working more with this solution. Is there any other simple way? Please let me know.
Thank you.