1.获取frame的document HtmlDocument htmlDoc = webBrowser1.Document; "frmRpt"为iframe的name; 2.获取frame的源文件 MessageBox.Show(webBrowser1.Document.Window.Frames["main"].Document.Body.InnerHtml); 3.获取frame的HTMLDocument接口 HTMLDocument doc = (HTMLDocument)webBrowser1.Document.DomDocument; 4.获取frame的IHTMLDocument2接口 IHTMLDocument2 doc = (IHTMLDocument2)webBrowser1.Document.Window.Frames["main"].Document.DomDocument; 5.取得frame中被点击的连接 private void webBrowser1_Navigating(object sender, WebBrowserNavigatingEventArgs e) |
|
来自: 天蓝云淡 > 《C#-VS2008方向》