Exe run from Asp.net page not showing up
-
Hi! I'm trying to run an EXE from an Asp.net page through following line of code
System.Diagnostics.Process.Start("")
. But EXE does not come up although it is there in the processes tab of the task bar. I've also tried using impersonation but that is not working either. Any ideas how to show the exe run from a web page. Thanks in advance.Don't Quit
-
Hi! I'm trying to run an EXE from an Asp.net page through following line of code
System.Diagnostics.Process.Start("")
. But EXE does not come up although it is there in the processes tab of the task bar. I've also tried using impersonation but that is not working either. Any ideas how to show the exe run from a web page. Thanks in advance.Don't Quit
Are you trying to run the exe on the client?
-
Hi! I'm trying to run an EXE from an Asp.net page through following line of code
System.Diagnostics.Process.Start("")
. But EXE does not come up although it is there in the processes tab of the task bar. I've also tried using impersonation but that is not working either. Any ideas how to show the exe run from a web page. Thanks in advance.Don't Quit
-
My first question would be: are you trying to get it to show on the client or the server? I take it you know running that code from the page code-behind will start it on the server, perhaps the exe doesn't have a UI?
Hi! I'm trying to run it on the server. Regarding UI, this exe is a windows sevice watcher which will show a notification icon in the system tray to start or stop the windows service. I'm able to run this exe as a windows form but not from a web form. Can I develop a windows service watcher through web form which can be used to start or stop the windows service. Many Thanks
Don't Quit