母版頁(Master Pages)為網站內的其他頁面提供模版。
Master Page 使您有能力為 web 應用程序中的所有頁面(或頁面組)創建一致的外觀和行為。
Master Page 為其他頁面提供了模版,帶有共享的布局和功能。Master Page 為內容定義了可被內容頁面覆蓋的占位符。而輸出結果就是 Master Page 和內容頁面的組合。
內容頁包含您希望顯示的內容。本文是網頁教學www.webjx.com收集整理或者原創內容,轉載請注明出處!
當用戶請求內容頁時,ASP.Net 會對頁面進行合並以生成輸出,輸出結果對 Master Page 的布局和內容頁面的內容進行了合並。
<%@ Master %> <html> <body> <h1>Standard Header For All Pages</h1> <asp:ContentPlaceHolder id="CPH1" runat="server"> </ASP:ContentPlaceHolder> </body> </Html>
Master Page 是一張為其他頁面設計的普通 Html 模版頁。
@ Master 指令把它定義為一個張 master page。
這個 master page 為單獨的內容包含了一個占位符標簽<ASP:ContentPlaceHolder>。
id="CPH1" 屬性標識該占位符,在相同的 master page 中允許多個占位符。
該 master page 被保存為 "master1.master"。
注釋:該 master page 也能夠包含代碼,允許動態的內容。
<%@ Page MasterPageFile="master1.master" %> <asp:Content ContentPlaceHolderId="CPH1" runat="server"> <h2>Individual Content</h2> <p>Paragrap 1</p> <p>Paragrap 2</p> </ASP:Content>
上面的內容頁是獨立的內容頁面之一。
@ Page 指令把它定義為一張標准的內容頁面。
該內容頁面包含了一個內容標簽<ASP:Content>,該標簽引用了母版頁(ContentPlaceHolderId="CPH1")。
該內容頁被保存為 "mypage1.ASPx"。
當用戶請求該頁面時,ASP.Net 就會將母版頁與內容頁進行合並。
點擊這裡顯示 mypage1.ASPx。
注釋:內容文本必須位於 <ASP:Content> 標簽內。該標簽外的文本是不被允許的。
<%@ Page MasterPageFile="master1.master" %> <asp:Content ContentPlaceHolderId="CPH1" runat="server"> <h2>Webjx.Com</h2> <form runat="server"> <asp:TextBox id="textbox1" runat="server" /> <asp:Button id="button1" runat="server" text="Button" /> </form> </ASP:Content>
上面的內容頁演示了如何把 .Net 控件插入內容頁,就像插入一個普通的頁面中。