如何在 VB.NET (Visual Basic 2010) 中使用 span ID 从 HTML 文档中获取字符串?
我正在做一个项目,我想从网页跨度中提取文本到我的应用程序的textbox1.text
. 到目前为止,我只使用了这个:
TextBox1.Text = WebBrowser1.Document.All.GetElementsByName("***I put the span id here, but it didn't work.***")(0).InnerText
如何在 VB.NET (Visual Basic 2010) 中使用 span ID 从 HTML 文档中获取字符串?
我正在做一个项目,我想从网页跨度中提取文本到我的应用程序的textbox1.text
. 到目前为止,我只使用了这个:
TextBox1.Text = WebBrowser1.Document.All.GetElementsByName("***I put the span id here, but it didn't work.***")(0).InnerText