Table of Contents
WebView.GetHtml Method 

Returns the current page HTML.

Syntax
 public string GetHtml();
Remarks

This function returns the current, not the original HTML of the page. For example, if the page contains JavaScript that modified the page contents, then this function returns the modified contents.

EO.WebBrowser does not maintain the original HTML of the page. If you wish to retrieve the original HTML of the page, you can create a WebRequest object to fetch the resource directly from the server.

See Also