如何使用 MasterPage(注意母板页和子页面的执行顺序)

1. 创建 MasterPage,后缀名 .master, 如 x.master.
    其中用 <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">


3. 利用 MasterPage 可以使用多种语言来编写一个页面的各个部分。


4. 除了在 <%@ Page %> 里面指定 MasterPage, 也可以在 web.config 指定:

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

    这样定义后,如果创建 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 已经过期,则会引发一个错误。
    所以实际上只能对子页面指定缓存。

如果一个Page使用了一个MasterPage,2者之间事件的执行顺序如下:

MasterPage控件 Init 事件。

Page控件 Init 事件。

MasterPage Init 事件。

Page Init 事件。

Page Load 事件。

MasterPage Load 事件。

Page控件 Load 事件。

Page PreRender 事件。

MasterPage PreRender 事件。

MasterPage控件 PreRender 事件。

Page控件 PreRender 事件

原文链接:http://www.cnblogs.com/hunterzou/archive/2010/11/25/1887622.html

转载于:https://www.cnblogs.com/dragonstreak_1/archive/2011/07/25/2116075.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值