19 Ocak 2016 Salı

c# webBrowser.Document.GetElementsByTagName

 foreach (HtmlElement h1 in webBrowser.Document.GetElementsByTagName("H1"))
            sb.Append(h1.InnerText + ". ");
 
        // Select only the article text, ignoring everything else.
        foreach (HtmlElement div in webBrowser.Document.GetElementsByTagName("DIV"))
            if (div.GetAttribute("classname") == "story-body")
                foreach (HtmlElement p in div.GetElementsByTagName("P"))
                {
                    string classname = p.GetAttribute("classname");
                    if (classname == "introduction" || classname == "")
                        sb.Append(p.InnerText + " ");
                }
 
        webBrowser.Dispose();
        _plainText = sb.ToString();
    }