我有一个程序(我创建),我想在网页加载时在服务器上启动它.
这是我的代码
public partial class _Default : System.Web.UI.Page { Process app = new Process(); protected void Page_Load(object sender,EventArgs e) { app.StartInfo.FileName = @"D:/Path to /My/Program to be run.exe"; app.Start(); } }
现在应用程序是“运行”,但是它会立即崩溃.
如果我只是运行应用程序(通过双击exe)它运行,一切都很好.
任何人看到我是否在这里缺少一些东西?
解决方法
您可以使用ProcessStartInfo.
ProcessStartInfo psi = new ProcessStartInfo(); psi.FileName = @"D:/Path to /My/Program to be run.exe"; psi.WorkingDirectory = IO.Path.GetDirectoryName(psi.FileName); Diagnostics.Process.Start(psi);