Reputation: 59
I am looking for the equivalent code using EO Webbrowser control
HtmlElement hElement = webBrowser1.Document.GetElementsByTagName("head")[0];
HtmlElement sElement = webBrowser1.Document.CreateElement("script");
sElement.InnerText = javascript5;
hElement.AppendChild(sElement);
ImageCallBack cb = new ImageCallBack();
webBrowser1.Document.InvokeScript("getImage", new object[] { cb });
Upvotes: 0
Views: 710
Reputation: 1
There doesn't seem to be any controls for this.
for forward or backward . or enter login data or passwords from the website . or read the page.
neither in VB Sharp or C++ or Java
Upvotes: 0
Reputation: 59
_Browser.EvalScript(script);
_Browser.InvokeFunction(functionName, args);
Answer to the question i asked.
Upvotes: 0