How do get data from webbrowser?

How do get data from webbrowser in C#

  • have a form and one webbrowser now I want to retrieve data displayed on the webbrowser must do? Div Tags <div id="divTop"> <div id="text-conent" style="width: 500px; float: right;"></div> <div id="grid" style="margin-removed 505px; height: 700px;"></div> </div> I want to take content from tag div 'text - conent' but do not know how

  • Answer:

    You can get your webbroswer content with the "WebBrowser.DocumentText" property Then you can use CSQuery to parse your html for example or any method you like. (even a regex if you think it's more simple) If you know JQuery, it'll be easy. https://github.com/jamietre/CsQuery var html = myWebBrowser.DocumentText; var dom = CQ.Create(html); var divContent = dom.Select("#text-conent").Text(); EDIT If you just want to download a page to get the data, you can just remove your webbrowser and use something like that var dom = CQ.CreateFromUrl("http://www.test.com"); var divContent = dom.Select("#text-conent").Text(); richTextBox1.Text = divContent; these 2 lines will do everything.

LongNgo08 at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

I recommend using HtmlAgilityPack to parse from HTML. In your case the code would be: HtmlAgilityPack.HtmlDocument doc = (HtmlAgilityPack.HtmlDocument)webBrowser1.Document.DomDocument; string text = doc.GetElementbyId("text-content").InnerText; EDIT Or you try this instead: text = doc.DocumentNode.SelectSingleNode("//div[@id='divTop']/div[@id='text-content']").InnerText;

JustOneQuestion

I wrote one script but it informed error HtmlElement texts = webBrowser1.Document.GetElementById("text-conent"); string kq = ""; foreach (var item in texts.All) { kq += item.InnerText + Environment.NewLine; } richTextBox1.Text = kq; Error : 'object' does not contain a definition for 'innerText' and no extension method 'innerText' accepting a first argument of type 'object' could be found (are you missing a using directive or an assembly reference)

LongNgo08

HtmlAgilityPack.HtmlDocument doc = (HtmlAgilityPack.HtmlDocument)webBrowser1.Document.DomDocument; string texts = doc.DocumentNode.SelectSingleNode("//div[@class='text-conent']/p]").InnerText; richTextBox1.Text = texts;

LongNgo08

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.