我开发了一个运行exe文件的Web应用程序。
它在我的本地机器上运行良好。
当我在服务器中托管应用程序时,exe文件没有执行。
我正在使用以下代码来运行exe文件。
Process p = new Process();
p.StartInfo.FileName = @"E:\Debug\VncSharpExampleCS.exe";
p.Start();
任何人都可以帮助我。
答案 0 :(得分:0)
我们走了:
Process process = Process.Start(@"Data\myApp.exe");
int id = process.Id;
Process tempProc = Process.GetProcessById(id);
this.Visible = false;
tempProc.WaitForExit();
this.Visible = true;
此外,您可以从此enter link description here
获取更多信息希望它有所帮助。