C#的WebBrowser操作frame如此简单_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C#的WebBrowser操作frame如此简单

C#的WebBrowser操作frame如此简单

 2014/8/18 16:21:14  GC2013  程序员俱乐部  我要评论(0)
  • 摘要:刚学c#不久,也不太懂什么IHTMLDocument、IHTMLDocument2、IWebBrowser2等等。自己琢磨了好久,终于知道了怎么用WebBrowser操作frame和iframe。1.获取frame的源文件MessageBox.Show(webBrowser1.Document.Window.Frames["main"].Document.Body.InnerHtml);2.获取frame的HTMLDocument接口HTMLDocumentdoc=(HTMLDocument
  • 标签:C# Web WebBrowser 操作

刚学c#不久,也不太懂什么IHTMLDocument、IHTMLDocument2、IWebBrowser2等等。自己琢磨了好久,终于知道了怎么用WebBrowser操作frame和iframe。

 

1.获取frame的源文件

 

MessageBox.Show(webBrowser1.Document.Window.Frames["main"].Document.Body.InnerHtml);

 

2.获取frame的HTMLDocument接口

 

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

object j;

for (int i = 0; i < doc.parentWindow.frames.length; i++)

{

      j = i;

      HTMLWindow2Class frame = doc.parentWindow.frames.item(ref j) as HTMLWindow2Class;

      if (frame.name == "main")

       {                  

             MessageBox.Show(frame.document.title);                   

       }

}    

 

3.获取frame的IHTMLDocument2接口

 

IHTMLDocument2 doc = (IHTMLDocument2)webBrowser1.Document.Window.Frames["main"].Document.DomDocument;

 

4.取得frame中被点击的连接

 

private void webBrowser1_Navigating(object sender, WebBrowserNavigatingEventArgs e)

{

     string url = webBrowser1.Document.Window.Frames["main"].Document.ActiveElement.GetAttribute("src");

}

  • 相关文章
发表评论
用户名: 匿名