There is a basic web project written in java and .net application on winforms. Inside the desktop application using geckofx opens a link to the main project module. Tell me some options on how to transfer data from the front of the main project to the desktop? Perhaps, how is it possible to call js methods from it?
InvokeScript:object res = webBrowser1.Document.InvokeScript("method", args);Just don't forget aboutWebBrowser.IsScriptEnabled- Ares