How to invoke JavaScript function written in the HTML from .cs file?
For the Microsoft's Winform control WebBrowser
we can invoke the JavaScript function as
Browser.Document.InvokeScript("JavascriptFunction");
We can also pass the parameters from C# to JavaScript function.
How we can achieve this for DotNetBrowser control?