111,094
社区成员




private void getAllHtmlDocument(Forms.HtmlDocument doc)
{
try {
foreach (HtmlWindow hw in doc.Window.Frames) {
getAllHtmlDocument(hw.Document);
}
} catch (Exception ex) {
Debug.Print(ex.Message);//拒绝访问。 (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
}
}