在ASP中回收应用程序池.. NET web请求

本文关键字:程序池 NET web 请求 应用程序 应用 ASP | 更新日期: 2023-09-27 18:05:22

是否可以回收ASP的应用程序池?. NET应用程序在http请求中接收到应用程序吗?我想有一个方法回收应用程序池很容易,而不必登录到机器。

在ASP中回收应用程序池.. NET web请求

重新启动ASP的一种常用方法。. NET应用程序正在调用:

HttpRuntime.UnloadAppDomain();

将调用放到页面或处理程序中。

有几种方法可以回收应用程序池

 Process process = Process.GetCurrentProcess();
 process.Kill(); // This will kill your worker process

 HttpRuntime.UnloadAppDomain(); // Kill app domain. Next request will restart the app domain

或程序化地触摸你的网页。这也应该触发应用程序回收