We are trying to launch a console application from the ASP.NET web application. The exe adds into the process but no execution and the console window does not open up too.
We can see the exe running from Task Manager window. Why the console window does not turn up .. any idea??
The exe standalone works fine, here is the code .. when clicking on the link button the following code is called up.. as said the process is created but no execution and no console window.
ProcessStartInfo startInfo = new ProcessStartInfo(Server.MapPath(@"~/Add.exe"));
System.Diagnostics.Process p = System.Diagnostics. Go to the complete details ...