Please Help! How I can run appl *.exe file from asp page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I made page on javascript(asp page), on this page I have button.
When I click on the button I want to run appl *.exe file.
How I can make it?

thank you,
Pola
 
I made page on javascript(asp page), on this page I have button.
When I click on the button I want to run appl *.exe file.
How I can make it?

var WshShell = new ActiveXObject("WScript.Shell");
var oExec = WshShell.Exec("calc.exe");
 
Back
Top