I have an exe on a server that runs at a scheduled time each day, but i also want to provide a way to start the exe manually throughout the day if needed.
I have tried the following code behind in an ASP.Net page:
System.Diagnostics.Process theProcess = new System.Diagnostics.Process();
theProcess.StartInfo.FileName = "C:\\inetpub\\wwwroot\\MyWebsite\\MyProcessor.exe";
theProcess.Start();
But when i click the button to which this code is assigned to, nothing happens, no errors, no process on the server. Nothing. The web browser just sits there trying to reload the page.