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.
如何使用 asp.net C# 重新启动 w3wp.exe 进程?例如,我想在 webform 页面中单击一个按钮来重新启动服务器中的 w3wp.exe 进程。
您可以通过运行以下代码强制应用程序回收。
HttpRuntime.UnloadAppDomain()
希望这可以帮助。