show/hide this revision's text 4 added 11 characters in body

If you place a file named *app_offline.htm* in the root of a web application directory, ASP.NET 2.0+ will shut-down the application and stop normal processing any new incoming requests for that application, showing only the contents of the app_offline.htm file for all new requests.

This is the quickest and easiest way to display your "Site Temporarily Unavailable" notice while re-deploying (or rolling back) changes to a Production server.

Also, as pointed out by marxidad, make sure you have at least 512 bytes of content within the file so IE6 will render it correctly.

show/hide this revision's text 3 added 9 characters in body

If you place a file named *app_offline.htm* in the root of a web application directory, ASP.NET 2.0+ will shut-down the application and stop processing any new incoming requests for that application, showing only the contents of the app_offline.htm file for all requests.

This is the quickest and easiest way to display your "Site Temporarily Unavailable" notice while re-deploying (or rolling back) changes to a Production server.

Also, as pointed out by marxidad, make sure you have at least 512 bytes of content within the file so IE6 will render it correctly.

show/hide this revision's text 2 added 140 characters in body

If you place a file named *app_offline.htm* in the root of a web application directory, ASP.NET 2.0+ will shut-down the application and stop processing any new incoming requests for that application, showing only the contents of the app_offline.htm file for all requests.

This is the quickest and easiest way to display your "Site Temporarily Unavailable" notice while re-deploying (or rolling back) changes to a Production server.

Also, as pointed out by marxidad, make sure you have at least 512 bytes of content within the file so IE6 will render it correctly.

show/hide this revision's text 1