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
Post a Comment