A
andrewb
I have a C# .NET 2005 application that uses the WebBrowser control to
render a client-side webpage that uses javascript.
The C# application needs to be able to access the values of javascript
variables (including arrays) on the page.
I have used the following references but neither seems to offer me a
way of getting to the javascript variables ...
mshtml.IHTMLDocument2 doc = wb.Document as mshtml.IHTMLDocument2;
IHTMLWindow2 parent = doc.parentWindow as mshtml.IHTMLWindow2;
Have scoured the web for examples but with no success - any help you
could offer would be much appreciated.
render a client-side webpage that uses javascript.
The C# application needs to be able to access the values of javascript
variables (including arrays) on the page.
I have used the following references but neither seems to offer me a
way of getting to the javascript variables ...
mshtml.IHTMLDocument2 doc = wb.Document as mshtml.IHTMLDocument2;
IHTMLWindow2 parent = doc.parentWindow as mshtml.IHTMLWindow2;
Have scoured the web for examples but with no success - any help you
could offer would be much appreciated.