In reply to: Daniel Krüger (Cosmo Consult)
Hi Tomek,
I fail to see why you want to start a browser from within a browser. :)
If the user can click on a link you can use the target attribute to define that the link should be opened in a new window.
https://www.w3schools.com/tags/att_a_target.asp
If you want to trigger this automatically you can use Javascript and window.open
https://developer.mozilla.org/en-US/docs/Web/API/Window/open
If you want to redirect the browser to a different location after path transition you can use the hyperlink action. Here's an example for executing arbitrary Javascript.
https://daniels-notes.de/posts/2022/add-new-choice-field-value-without-leaving-the-page
Using something like document.location.href = 'https://www.webcon.com' should allow you to redirect to any URL. Maybe there's an syntax/spelling error. I currently don't have access to a system where I can verify it.
But maybe I'm completely wrong and you w a NT to achieve something different. :)
Coming back to the original question:
Plugins with.net code are always executed on the server.
Form field extensions using Javascript are executed in the browser of the client.
Best regards,
Daniel
Thanks for help, but to be precise: using the server (with Webcon) and the certificate uploaded on it, I communicate with another server, which provides me a link that I need to open at the client side.