在网页源代码中找某个节点的内容

***通过sourceIndex可找到节点,sourceIndex表示节点在源代码中的序号。

mshtml.HTMLDocument doc = (mshtml.HTMLDocument)this.webBrowser1.Document.DomDocument;

 IHTMLElement e = (IHTMLElement)doc.all.item(element.sourceIndex);

 this.textBox1.Text = e.innerText;

你可能感兴趣的:(c#)