Is it possible to save a file of any type bypassing the 'save as' dialog? using the WebBrowser Class
WebBrowser.ShowSaveAsDialog();
Is the loaded content in a Webbrowser control serializable so it can be saved and retrieved (for redisplay)?
Is it possible to save a file of any type bypassing the 'save as' dialog? using the WebBrowser Class
WebBrowser.ShowSaveAsDialog();
Is the loaded content in a Webbrowser control serializable so it can be saved and retrieved (for redisplay)?
Given that you have full access to the DOM and can therefore read any contents that the WebBrowser is displaying the answer must be yes.
However if you just wish to download a webpage and save it to disk there are better ways then using the WebBrowser control, have a look at the WebClient class
I looked for DAYS for this! Most had code a mile long... this is short, to the point, and works like a dream!!!
Thank YOU!!!