ASP.NET 2.0 的 App_Offline.htm 功能

來源:互聯網
上載者:User
    在ASP.NET 2.0 網站根目錄下,只要存在 App_Offline.htm 檔案,那麼所有對.aspx的請求都將轉向App_Offline.htm 。而且瀏覽器的地址欄顯示的是所請求的.aspx的URL。

    這樣當我們的網站需要維護時,只要把App_Offline.htm 拷貝到網站根目錄下即可。

App_Offline.htm 檔案:<!-- 
****************************************************
*******                                                                    *******
*******            App_Offline.htm 不能小於 512 位元組            *******
*******                                                                    *******
****************************************************
-->

<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=gb2312">
<title>網站更新中</title>
</head>

<style>
div {
    background-color:#ffffcc;
    padding-top:10px;
    padding-bottom:10px;
    padding-left:10px;
    padding-right:10px;
    border-style:solid;
    border-color:Black;
    border-width:1px;
}
</style>

<body>
<div>
    <h1>網站更新中</h1>
    <p>網站更新中,請稍後訪問。</p>
</div>
</body>
</html>

瀏覽介面如下:

注意事項:
 (1)App_Offline.htm 不能小於 512 位元組。
 (2)IIS 不能 Stop。
 (3)只有對.aspx檔案的請求才自動轉到App_Offline.htm檔案;如果請求的是.htm檔案,則不會轉到App_Offline.htm

本文地址:http://www.cnblogs.com/anjou/archive/2006/12/22/600949.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.