[webbrowser component]
- by Eduardo Ghidini
I'm using webbrowser component to show an page of articles.
My webbrowser will, if the user read an article, to mark it like read.
So, i'm need to each articles of the page (these articles are dynamic) and verify, in a local xml how articles are read.To article read i'm set a determinated css class,and if not, another css class.
To do it, i'm checking all elements of type "DIV" in page using this code line:
HtmlElementCollection col = webBrowser.Document.GetElementsByTagName("div");
I'm wanna filter the div's to get only 'divs' that i will change and not all div's of page
Somebody can help me?
Thanks