C#中的GetElementsByTagName

时间:2012-04-29 00:02:50

标签: c# browser

我有这段代码:

string x = textBox1.Text;
string[] list = x.Split(';');
foreach (string u in list)
{
    string url = "http://*********/index.php?n=" + u;
    webBrowser1.Navigate(url);
    webBrowser1.Document.GetElementsByTagName("META");
}

并且我正在尝试将<META>标记输出到消息框,但是当我测试它时,我不断收到此错误:

  

对象引用未设置为对象的实例。

3 个答案:

答案 0 :(得分:2)

在完成加载之前,您不应尝试访问该文档。在DocumentCompleted事件的处理程序中运行该代码。

但马蒂是对的。如果您只需阅读HTML,则不应使用WebBrowser。只需获取文本并使用HTML解析器解析它。

答案 1 :(得分:2)

您的问题是您在加载文档之前访问Document对象 - WebBrowser是异步的。只需使用HTML Agility Pack等库来解析HTML。

以下是使用HTML Agility Pack获取<meta>标记的方法。 (假设using System.Net;using HtmlAgilityPack;。)

// Create a WebClient to use to download the string:
using(WebClient wc = new WebClient()) {
    // Create a document object
    HtmlDocument d = new HtmlDocument();

    // Download the content and parse the HTML:        
    d.LoadHtml(wc.DownloadString("http://stackoverflow.com/questions/10368605/getelementsbytagname-in-c-sharp/10368631#10368631"));

    // Loop through all the <meta> tags:
    foreach(HtmlNode metaTag in d.DocumentNode.Descendants("meta")) {
        // It's a <meta> tag! Do something with it.
    }
}

答案 2 :(得分:0)

您可以直接从WebBrowser控件中检索META标记和任何其他HTML元素,不需要HTML Agility Pack或其他组件。

像Mark所说,先等待DocumentCompleted事件:

webBrowser.DocumentCompleted += WebBrowser_DocumentCompleted;

然后,您可以从HTML文档中捕获任何元素和内容。以下代码获取标题和元描述:

private void WebBrowser_DocumentCompleted(object sender, System.Windows.Forms.WebBrowserDocumentCompletedEventArgs e)
{
        System.Windows.Forms.WebBrowser browser = sender as System.Windows.Forms.WebBrowser;
        string title = browser.Document.Title;
        string description = String.Empty;
        foreach (HtmlElement meta in browser.Document.GetElementsByTagName("META"))
        {
            if (meta.Name.ToLower() == "description")
            {
                description = meta.GetAttribute("content");
            }
        }
}