Hi, I have application.exe in
http://folder/application.exeI used the following java script and html code to insert into my webpage:
<SCRIPT Language="JScript">
function runcmd() {
File="http://myfolder/application.exe";
WSH=new ActiveXObject("WScript.Shell");
WSH.run(File);
}
</SCRIPT>
<body onLoad="javascript:runcmd();">
But it is not working can you tell what is the problem,
and how to achieve this? to run .exe file automatically.
Thanks in advance, G.G.