从ASP.NET C#启动一个程序

前端之家收集整理的这篇文章主要介绍了从ASP.NET C#启动一个程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个程序(我创建),我想在网页加载时在服务器上启动它.

这是我的代码

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);
原文链接:https://www.f2er.com/aspnet/245716.html

猜你在找的asp.Net相关文章