web browser control and ajax

  • Thread starter Thread starter mwolf
  • Start date Start date
M

mwolf

hello,

im looking for some advice on how to deal with a web page that uses
dynamic html / ajax via the internetexplorerclass. For a standard
document I can do something like this

mshtml.IHTMLDocument2 HTMLDocument =
(mshtml.IHTMLDocument2)IE_Inst.Document;

mshtml.IHTMLElementCollection forms = HTMLDocument.all;

or

mshtml.HTMLDocument ieDoc = (mshtml.HTMLDocument)IE_Inst.Document;

String PageContent = ieDoc.body.innerHTML.ToString();

but if the document contains dynamic html, especially via a remote
request... I cant figure out how to get that data.

For example if a link is created via javascript, How could I access
the link and say click it?

mike
 
Back
Top