I'm trying to get asp.net to run a console application on the server. I can get it to run with the following:
System.Diagnostics.ProcessStartInfo info =
new System.Diagnostics.ProcessStartInfo(filePath, "");
Process processChild = Process.Start(info);
info.CreateNoWindow = false;
What I need is for the console app window to appear. Currently it just runs as a process in the background.
Any ideas? Is this even possible?