G
Guest
Hi,
in C# I'm able to access a webbrowser control with the following code and
print out all "tags":
IHTMLDocument2 HTMLDocument = (IHTMLDocument2)browser.Document;
IHTMLElementCollection links = HTMLDocument.links;
foreach (HTMLAnchorElementClass el in links)
{
listBox1.Items.Add(el.outerHTML);
}
This works fine for a non-frameset page...But doesn't work for a page with a
frameset. Could anyone tell me how to print all "text-tags" from all frames
within the frameset?
Tanks in advance,
Randy
in C# I'm able to access a webbrowser control with the following code and
print out all "tags":
IHTMLDocument2 HTMLDocument = (IHTMLDocument2)browser.Document;
IHTMLElementCollection links = HTMLDocument.links;
foreach (HTMLAnchorElementClass el in links)
{
listBox1.Items.Add(el.outerHTML);
}
This works fine for a non-frameset page...But doesn't work for a page with a
frameset. Could anyone tell me how to print all "text-tags" from all frames
within the frameset?
Tanks in advance,
Randy