如何使用 MasterPage

1. 建立 MasterPage,後綴名 .master, 如 x.master.web

    其中用 <asp:ContentPlaceHolder /> 定義空位。如:編程

    

<asp:ContentPlaceHolder ID="ContentPlaceHolder1" Runat="Server">
</asp:ContentPlaceHolder>

  


2. 建立內容頁面。
    在 NewItem 對話框裏選擇 "select master page", 選擇上一步建立的 MasterPage.
    產生的代碼裏, MasterPageFile 屬性指定了 MasterPage 的位置:瀏覽器

    <%@ Page Language="VB" MasterPageFile="~/x.master" Title="無標題頁面" %>緩存

    頁面裏用 <asp:Content /> 來添加內容到對應的空位:安全

    <asp:Content ID="Content1" ContentPlaceHolderId="ContentPlaceHolder1" Runat="Server">
        內容
    </asp:Content/>服務器

    內容頁面沒有 <form id="form1" runat="server">asp.net


3. 利用 MasterPage 可使用多種語言來編寫一個頁面的各個部分。spa


4. 除了在 <%@ Page %> 裏面指定 MasterPage, 也能夠在 web.config 指定:.net

    <configuration>
        <system.web>
            <pages masterPageFile="~/x.master" />
        </system.web>
    </configuration>orm

    這樣定義後,若是建立 Page 時選擇了 master page, 則在 <%@ Page %> 裏面不須要指定便可使用該 MasterPage.
    其餘頁面要使用不一樣的 MasterPage 的話,只要用第一種方法在 Page directive 裏面明確的覆蓋 web.config 裏的設置便可。

    能夠僅對一組 pages 指定 MasterPage. 下例利用 web.config 的 location 元素,設定了 Admin 目錄下的頁面採用的不一樣的 MasterPage.

    <configuration>
        <location path="Admin">
            <system.web>
                <pages masterPageFile="~/y.master" />
            </system.web>
        </location>
    </configuration>

  


5. 在內容頁面如何設定 Page 的 Title ?

    默認狀況下,Title 在 MasterPage 中指定後,其餘具體頁面就都使用這個 Title.
    在具體頁面,能夠有兩個辦法修改 Title:
    
    a. <%@ Page Title="test" %>

    b. 代碼中:

        protected void Page_LoadComplete(object sender, EventArgs e)
        {
            Master.Page.Title = "Hello";
        }

    
6. 訪問 MasterPage 中的屬性和控件。

    用 Master 屬性來訪問。

    a. 假設 MasterPage 中有一個 Label1, 那麼在內容頁面能夠這樣:

        protected void Page_LoadComplete(object sender, EventArgs e)
        {
            string text = (Master.FindControl("Label1") as Label).Text;
        }

        頁面加載的次序:
        
        要獲取在 MasterPage 的 Page_Load 裏面設定的值,必須在內容頁面的 Page_LoadComplete 中來寫。

        前面提到的 FindControl() 方法來查找 MasterPage 中的控件,是一種後期綁定的作法,通常是不安全的。由於這取決於 MasterPage 中是否存在這個 tag,若是被刪除了,則會致使錯誤。
        比較好的作法是,在 MasterPage 中用屬性封裝對他的控件的訪問;若是用 FindControl(), 則老是檢查其結果是否爲 null.


7. 指定 MasterPage 中的默認內容

    直接在 <asp:ControlPlaceHolder /> 標籤之間指定便可。
    若是子頁面不從新指定,則會採用該默認內容。


8. 編程的方式指定 Master Page

    protected void Page_PreInit(object sender, EventArgs e)
    {
        Page.MasterPageFile = "~/x.master";
    }


9. 嵌套的 Master Page

    Master Page 能夠繼承自更高層次的 Master Page. 可是在 VS2005 中建立這種子 Master Page 的時候,不會有默認的支持。
    假設有了一個 A.master,
    咱們如今先建立一個普通的 B.master,
    而後刪除其中除了 Page directive 的其餘部分。
    把 Page Directive 修改成以下,並加入本身要定義的 PlaceHolder:

    <%@ Master MasterPageFile="~/A.master" %>

    <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="server">
        Hello!
        <asp:ContentPlaceHolder ID="ContentPlaceHolder2" Runat="server">
        </asp:ContentPlaceHolder>
    </asp:Content>

    用嵌套的模板產生的子頁面將不能採用 VS2005 的 design 模式。


10. 容器特定的 Master Pages

    爲了能兼容不一樣的瀏覽器,asp.net 2.0 支持多個 Master Page. 在運行時將自動加載合適的 Master Page.

    語法以下:

    <%@ Page Language="VB" MasterPageFile="~/Abc.master"
        Mozilla:MasterPageFile="~/AbcMozilla.master"
        Opera:MasterPageFile="~/AbcMozilla.master" %>


11. 頁面請求的次序

    當用戶請求一個用 Master Page 構建的頁面時,各類事件發生的次序以下:

    Master Page 子控件初始化;
    內容頁面子控件初始化;
    Master Page 初始化;
    內容頁面初始化;
    內容頁面 Page_Load;
    Master Page 的 Page_Load;
    Master Page 子控件加載;
    內容頁面子控件加載;

    
    注意點:
    
    由於內容頁面的 Page_Load 先於 Master Page 的 Page_Load,因此,若是要訪問 Master Page 裏的服務器控件,則必須在內容頁面的 Page_LoadComplete 方法裏書寫代碼。


12. 使用緩存

    只有在內容頁面纔可使用以下的 directive 指定緩存:

    <%@ OutputCache Duration="10" Varybyparam="None" %>

    (這個指令讓服務器在內存裏緩存該頁面 10 秒鐘)

    若是對 Master Page 指定該指令,自己並不會引起錯誤。可是當他的子頁面下一次來獲取其 Master Page 的時候,若是這時 Master Page 已通過期,則會引起一個錯誤。    因此實際上只能對子頁面指定緩存。

相關文章
相關標籤/搜索