在按钮单击时通过Process.Start()在服务器计算机上启动应用程序

时间:2014-11-19 09:55:09

标签: c# asp.net

我有一个C#asp.net webapp托管,它应该通过客户端浏览器点击按钮在服务器上启动InternetExplorer进程。

protected void Button1_Click(object sender, EventArgs e)
  {
       Process.Start("IExplore.exe", "www.google.com");
  }

不幸的是,这对我来说不是很好。但是当我调试它时,它可以工作。 请帮助我实现这一目标。

谢谢, /阿拉汶

1 个答案:

答案 0 :(得分:1)

我认为你并不想真正想要启动IE而忽略明显的安全问题;我建议你看看这两个: Running Process on Server via ASP.NET/C# on IISProcess.Start Permissions Problem