我有简单的代码可以读取 html 并从表中写入数据:
foreach (HtmlElement hrel in testWebBrowser.Document.GetElementsByTagName("table"))
{
HtmlElementCollection coll2 = hrel.GetElementsByTagName("tr");
Console.WriteLine(coll2[0].InnerText);
Console.WriteLine(coll2[1].InnerText);
Console.WriteLine(coll2[2].InnerText);
Console.WriteLine(coll2[3].InnerText);
}
但我想通过...阅读表格id
我该怎么做?