C
Chris Fink
How do I execute the shell command from within a asp.net app?
This works in a c# console app, but not in a asp.net web app. The dos
window never opens or shows any sign of activity on the web.
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents=false;
proc.StartInfo.FileName="c:\\temp\\test.bat";
proc.Start();
I assume it is because of security concerns on the web. Any suggestions on
how to perform this task on the web?
Thanks
This works in a c# console app, but not in a asp.net web app. The dos
window never opens or shows any sign of activity on the web.
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents=false;
proc.StartInfo.FileName="c:\\temp\\test.bat";
proc.Start();
I assume it is because of security concerns on the web. Any suggestions on
how to perform this task on the web?
Thanks