Execute file on server
-
Hi, I want to make a webform that executes a program on the server.I have tried to run notepad using System.Diagnostics.Process.Start("notepad.exe") but i didn't have any luck.Could you please help me? Thanks.
-
Hi, I want to make a webform that executes a program on the server.I have tried to run notepad using System.Diagnostics.Process.Start("notepad.exe") but i didn't have any luck.Could you please help me? Thanks.
-
Thanks,but after searching the internet i found out that it could be an iis setup issue.do you have an idea?Tks.
-
Thanks,but after searching the internet i found out that it could be an iis setup issue.do you have an idea?Tks.
This is the code i am trying to execute: ProcessStartInfo psi=new ProcessStartInfo(@"C:\test.bat"); psi.UseShellExecute=false; psi.WorkingDirectory=@"C:\"; Process.Start(psi);
-
Hi, I want to make a webform that executes a program on the server.I have tried to run notepad using System.Diagnostics.Process.Start("notepad.exe") but i didn't have any luck.Could you please help me? Thanks.
Dangerous to run exe like that.
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
Dangerous to run exe like that.
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
I really need a solution on how to allow asp.net_wp execute a file:) I know it's dangerous but this is what i have to do.And i was hoping you could tell me