标签:代码 process 重启 oid res restart thread asp net
把开发过程比较常用的一些代码做个备份,如下代码段是关于ASP.NET应用程序自己重启的方法的代码。private static void RestartMe()
{
Application.ExitThread();
Application.Exit();
Application.Restart();
Process.GetCurrentProcess().Kill();
}
标签:代码 process 重启 oid res restart thread asp net
原文地址:http://blog.51cto.com/14149868/2342430