Possible Duplicate:
Programmatically get screenshot of page
What I am doing is a simple WebBrowser1.Navigate("site");
What I want to do is save a copy of that webpage that loads in my windows form WebBrowser1. Any thoughts?
Possible Duplicate:
Programmatically get screenshot of page
What I am doing is a simple WebBrowser1.Navigate("site");
What I want to do is save a copy of that webpage that loads in my windows form WebBrowser1. Any thoughts?
Yes, that should be possible as WebBrowser is derived from Control.
This link explains how to get a screenshot from a winforms app.
Another SO question that might be useful
If you want to save the document as, e.g., an HTML file, the you can call the WebBrowser.ShowSaveAsDialog method.