ASP.NET - App_Offline.htm

今天得到一个Tip: 如果网站需要更新,而且时间较长时,可以使用ASP.net 2.0就引入的App_Offline.htm

 

"App_Offline.htm" feature in ASP.NET 2.0, which provides a super convenient way to bring down an ASP.NET application while you make changes to it (for example: updating a lot of content or making big changes to the site where you want to ensure that no users are accessing the application until all changes are done).


The way app_offline.htm works is that you place this file in the root of the application.  When ASP.NET sees it, it will shut-down the app-domain for the application (and not restart it for requests) and instead send back the contents of the app_offline.htm file in response to all new dynamic requests for the application.  When you are done updating the site, just delete the file and it will come back online.

 


你可能感兴趣的:(File,application,delete,asp.net)