0

我正在尝试解析一个包含许多表的 PHP 页面。现在,当我尝试选择这些表时,集合返回 null?

    Dim web As New HtmlAgilityPack.HtmlWeb()
    Dim htmlDoc As HtmlAgilityPack.HtmlDocument = web.Load("URL")
    Dim html As String

    Dim tabletag As HtmlNodeCollection = htmlDoc.DocumentNode.SelectNodes("//table")
    Dim tableNode As HtmlNode = htmlDoc.DocumentNode.SelectSingleNode("//table[@summary='List of services']")

    If Not tabletag Is Nothing Then
    html = tableNode.InnerText

    End If

这个页面肯定有一些表格,只是不明白为什么它返回null?

4

1 回答 1

0

我在浏览器中加载了您的 URL 并查看了源代码,实际上我找不到任何表格。错误的网址?

于 2012-07-11T18:06:40.257 回答