When using the WebBrowser Control I have a page that allows me to tap on a link and download a file. Is there a way to set the default "Save To" path for this webbrowser control
There is no exposed way for you to set the Save To path for the webbrowser control because the dialog that pops up when you click on the downloadable file is a native control.
You could also consider using the HttpWebRequest class instead if this would suit your needs.
WebBrowser Control
Tom K
There is no exposed way for you to set the Save To path for the webbrowser control because the dialog that pops up when you click on the downloadable file is a native control.
You could also consider using the HttpWebRequest class instead if this would suit your needs.