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?

  • one
    To call js, you can use InvokeScript : object res = webBrowser1.Document.InvokeScript("method", args); Just don't forget about WebBrowser.IsScriptEnabled - Ares
  • I need to call methods from a js-a on a desktop application, is it possible like that? - Lex

0