I\'m trying to use WebBrowser class, but of course it doesn\'t work.
WebBrowser
My code:
WebBrowser browser = new WebBrowser(); browser.Navigate(\"
Attach to the DocumentCompleted event, the code is as below
DocumentCompleted
browser.DocumentCompleted += (s, e) => { string html = browser.DocumentText; };