G
Guest
I use the following code to run a batch file on the server side but it not working. The code is working fine on a c# window console program. Can anyone help me?
Process myProcess = new Process()
myProcess.StartInfo.FileName = "C:\\mapDrv.bat"
myProcess.StartInfo.CreateNoWindow = true
myProcess.Start();
Process myProcess = new Process()
myProcess.StartInfo.FileName = "C:\\mapDrv.bat"
myProcess.StartInfo.CreateNoWindow = true
myProcess.Start();