0

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?

Community
  • 1
  • 1

2 Answers2

1

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

Community
  • 1
  • 1
santiagoIT
  • 9,411
  • 6
  • 46
  • 57
0

If you want to save the document as, e.g., an HTML file, the you can call the WebBrowser.ShowSaveAsDialog method.

Mark Cidade
  • 98,437
  • 31
  • 224
  • 236