Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在特定目录中有一个桌面 exe 文件,例如 (notopad.exe) 现在我想从我的 asp.net MVC3 Web 应用程序运行我的 exe。可能吗?
您可以Process.Start("notepad.exe")从System.Diagnostics.Process类中使用。
Process.Start("notepad.exe")