通过webbrowser从表中获取内容?

时间:2017-03-17 22:04:22

标签: html .net vb.net visual-studio webbrowser-control

我有下表。

<table class="table1">
            <tbody>
                <tr>
                    <th></th>
                    <th>SEQ</th>
                    <th>LOGIN</th>
                    <th>WHATSAPP</th>
                    <th>E-MAIL</th>
                </tr>
                <tr>
                    <td><a href="http://www.google.com/">1</a></td>
                    <td><a href="http://www.google.com/"></a></td>
                    <td><a href="http://www.google.com/">name</a></td>
                    <td><a href="http://www.google.com/">99 999999999</a></td>
                    <td><a href="http://www.google.com/">xxxxxxx@hotmail.com</a></td>
                </tr>
            </tbody>
        </table>

我想知道如何从每个TR获取内容以写入Access数据库。

因为直到我才设法获得此代码。

Dim PageElement As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("table")
        For Each CurElement As HtmlElement In PageElement
            If (CurElement.GetAttribute("className") = "table1") Then
                TextBox1.Text = CurElement.InnerHtml

            End If
        Next

0 个答案:

没有答案