I have a web page created using perl,, and I want to open a windows application (say notepad.exe) by clicking a link. | [reply] |
You can't easily. That's a a security feature of the web browser.
If you offer a .exe file for download, it's the user's choice what she does with it, running it is one option.
But starting an installed application is not supported, to the best of knowledge. (There might be some very hairy workarounds with ActiveX in Internet Explorer in trusted contexts, but that's hardly a viable solution in most cases).
| [reply] |
I have a web page created using perl,, and I want to open a windows application (say notepad.exe) by clicking a link.
Most browsers consider that a security risk and for good reason.
You could probably launch .exe's from html with HTAs (microsoft) and/or XULRunner (mozilla); they're used for creating desktop applications with html/js.
| [reply] |
| [reply] |