在html vb中添加字符串

时间:2018-02-19 11:02:00

标签: vb.net appendchild

我想在HTML内容上添加一个字符串。我有下一个代码

   <table>
        <tr>
        <td>hi</td>
        </tr>

        <tr class="pem">
        <td>hello</td>
        </tr>

        <td>1</td>
        <td>2</td>
        </tr>

        <tr>
        <td>hi</td>
        </tr>

        <tr class="pem">
        <td>hello</td>
        </tr>

        <td>1</td>
        <td>2</td>
        </tr>
    </table>

所以,如果你看到,我需要把2&#34; tr&#34;关闭它。

我想我需要这样做:

for each node as htmlNode in doc.DocumentNode.SelectNodes("//tr[contains(@class,'pem')]")
            //And here i want to make a appendchild to put only the "tr" to open it
            node.appendChild("<tr>")

但它不起作用,因为我需要创建一个HTML节点或htmlElement

1 个答案:

答案 0 :(得分:0)

您需要使用CDATA标记才能在xml中插入html元素。

一个例子是:

/etc/odbcinst.ini