visual studio - How can a web page run a program on client's computer? -


i developed web software visual studio. within web software when click on button, user's computer should run application given .exe file. application console application , needs receive commandline parameters.

i've tried run javascript, removed due security issues.

     dim startinfo new processstartinfo("c:\programadres\program.exe")      startinfo.windowstyle = processwindowstyle.normal      startinfo.arguments = "arguments"      process.start(startinfo) 

this code successfuly runs application, on server side. need because not know activexand don't know how start.


Comments

Popular posts from this blog

php - Dynamic url re-writing using htaccess -

java - Multi-Label Document Classification -

python - How to create a legend for 3D bar in matplotlib? -