Author: Flyloopz | Posted on: 7/24/2009 10:06:52 PM | Views : 771

Hello,
I have found an asynchronous download method which works great except for one thing.  It downloads from the servers D: drive (where my files are stored) to the servers C: drive instead of the local user's C: drive! 'Download File Asynchronously Dim client As New WebClient() AddHandler client.DownloadFileCompleted, AddressOf FileDownload1Complete AddHandler client.DownloadProgressChanged, AddressOf FileDownload1Update Dim uri As Uri = New Uri(SourceFilePath) client.DownloadFileAsync(uri, DestinationFilePath) How can I get the file to download to the users local C: drive?  Actually, it appears what I need is to know how to get this to prompt the user with a save file dialog box?  Right now there is no prompt sent.
Thank you


...

Go to the complete details ...