标签: asp.net asp.net-mvc-3
我在特定目录中有一个像(notopad.exe)这样的桌面exe文件,我想从我的asp.net MVC3 Web应用程序运行我的exe。有可能吗?
答案 0 :(得分:2)
您可以使用System.Diagnostics.Process课程中的Process.Start("notepad.exe")。
Process.Start("notepad.exe")