在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
如何使用 MasterPage 1. 创建 MasterPage,后缀名 .master, 如 x.master. <asp:ContentPlaceHolder ID="ContentPlaceHolder1" Runat="Server">
<%@ Page Language="VB" MasterPageFile="~/x.master" Title="无标题页面" %> 页面里用 <asp:Content /> 来添加内容到对应的空位: <asp:Content ID="Content1" ContentPlaceHolderId="ContentPlaceHolder1" Runat="Server"> 内容页面没有 <form >
<configuration> 这样定义后,如果创建 Page 时选择了 master page, 则在 <%@ Page %> 里面不需要指定即可使用该 MasterPage. 可以仅对一组 pages 指定 MasterPage. 下例利用 web.config 的 location 元素,设定了 Admin 目录下的页面采用的不同的 MasterPage. <configuration>
默认情况下,Title 在 MasterPage 中指定后,其他具体页面就都使用这个 Title. b. 代码中: protected void Page_LoadComplete(object sender, EventArgs e) 用 Master 属性来访问。 a. 假设 MasterPage 中有一个 Label1, 那么在内容页面可以这样: protected void Page_LoadComplete(object sender, EventArgs e) 页面加载的次序: 前面提到的 FindControl() 方法来查找 MasterPage 中的控件,是一种后期绑定的做法,一般是不安全的。因为这取决于 MasterPage 中是否存在这个 tag,如果被删除了,则会导致错误。
直接在 <asp:ControlPlaceHolder /> 标签之间指定即可。
protected void Page_PreInit(object sender, EventArgs e)
Master Page 可以继承自更高层次的 Master Page. 但是在 VS2005 中创建这种子 Master Page 的时候,不会有默认的支持。 <%@ Master MasterPageFile="~/A.master" %> <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="server"> 用嵌套的模板产生的子页面将不能采用 VS2005 的 design 模式。
为了能兼容不同的浏览器,asp.net 2.0 支持多个 Master Page. 在运行时将自动加载合适的 Master Page. 语法如下: <%@ Page Language="VB" MasterPageFile="~/Abc.master"
当用户请求一个用 Master Page 构建的页面时,各种事件发生的次序如下: Master Page 子控件初始化;
只有在内容页面才可以使用如下的 directive 指定缓存: <%@ OutputCache Duration="10" Varybyparam="None" %> (这个指令让服务器在内存里缓存该页面 10 秒钟) 如果对 Master Page 指定该指令,本身并不会引发错误。但是当他的子页面下一次来获取其 Master Page 的时候,如果这时 Master Page 已经过期,则会引发一个错误。 |
请发表评论