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

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -