Ok. I am using a SaveFileDialog object. What I would like to know is how to save a certain file from a location. For example..maybe a file from my website. http://www.intelvision.net/ebook/hello.txt.
The SaveFileDialog is just that, a dialog for browsing your local system to find a local to save TO. It doesn't provide the file you're saving, and it certainly doesn't deal with the Internet.
Yes, cgraus is right. You can't do that with SaveFileDialog. You should take a look in the WebClient.DownloadFile method to be able to download files over the internet.
SaveFileDialog
J. Galt
stephen terapak
Yes, cgraus is right. You can't do that with SaveFileDialog. You should take a look in the WebClient.DownloadFile method to be able to download files over the internet.
cheers,
Paul June A. Domag