星期三, 10月 31, 2007

WebBrowser讀取frame

HtmlWindow currentWindow = WebBrowser1.Document.Window;

1.get frame by id
HtmlWindow frame = currentWindow.Frames["aaa"]

2.get frame one by one
foreach (HtmlWindow frame in currentWindow.Frames)
{
//frame即為所求
}

*有n個frames的會跳n次completed+本身的html page 共n+1次

資源:HtmlWindow.Document 屬性

1 則留言:

匿名 提到...

謝謝,這幫了我。