javascript - Call exe file in web project using ActiveXObject -


when run 'test.exe' under web project using activexobject, ie gave below error message -

"the system cannot find file specified."

here sample coding

function runexe(){     w = new activexobject("wscript.shell");     var ex =w.exec('test.exe');   var ret = "";   //read output of jar   while (!ex.stdout.atendofstream) {      ret += ex.stdout.readline();  }     return true; } 

here project structure.

project path

can give me suggestions?

you request "text.exe", executable named "test.exe".


Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -