Is there any way to open Internet Explorer process from C#, send html content to this browser and capture 'displayed' content?
I am aware of other html stripping methods (e.g. HtmlAgilityPack) but I would like to explore the above avenue.
Thanks, LG
|
Is there any way to open Internet Explorer process from C#, send html content to this browser and capture 'displayed' content? I am aware of other html stripping methods (e.g. HtmlAgilityPack) but I would like to explore the above avenue. Thanks, LG
| |||
|
feedback
|
|
You can use the WebBrowser control, which exists for both WinForms and WPF, to host IE in your application. You can then set the control's Source to your HTML, wait for the content to load (using the LayoutUpdated event, not the Loaded event, which is raised when the HTML is finished downloading, not necessarily arranged and all dynamic JS run), then access the Document property to get the HTML. | |||||
feedback
|
Someone else created the regular expressions so i can not take credit for that, but the above code will open a webclient object to the passed in webpage and use regular expressions to find all of the childLinks for that page. Not sure if this is what you are looking for, but if you simply wanted to "grab" all of that HTML content and save it to a file, you could simply save the string "s" created in the line "string s = w.DownloadString(webpage);" to a File. | |||
|
feedback
|
WebBrowsercontrol.webBrowser.DocumentText=<html>....– L.B Feb 19 at 14:47