我需要从Web浏览器读取数据并将一些数据添加到我的数据库中。 数据在Web浏览器表中。
答案 0 :(得分:2)
您可以通过获取对WebBrowser的引用来操纵HtmlElement控件内加载的文档的DOM:
if (webBrowser1.ReadyState == WebBrowserReadyState.Complete)
{
// find the table by id
HtmlElement table = webBrowser1.Document.GetElementById("id_of_the_table");
// use the table to extract data from columns and rows
foreach (HtmlElement rowElem in table.GetElementsByTagName("TR"))
{
string html = rowElem.InnerHtml;
// ...
}
}