Click here to Skip to main content
15,891,567 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi guys,
I need a conversion from System.Windows.Forms.HtmlDocument to HtmlAgilityPack.HtmlDocument.
Or, alternatively, how to extract HTML source as string from System.Windows.Forms.HtmlDocument that I got off a WebBrowser control?

Thanks
Posted

1 solution

You should try the below code:

C#
HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
doc.Load(webBrowser1.DocumentStream);


Note: this could be added as a cast operator to the Html Agility Pack HtmlDocument class so your original code would compile as is.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900