本文实例讲述了ASP.Net巧用窗体母版页的方法。分享给大家供大家参考。具体分析如下:
背景:每个网页的基本框架结构类似:
浏览网站的时候会发现,好多网站中,每个网页的基本框架都是一样的,比如,最上面都是网站的标题,中间是内容,最下面是网站的版权、开发提供商等信息:
在这些网页中,表头、底部的样式和内容都是一样的,不同的只是中间的内容。
因此在制作网站时,可以将这些共同的东西分离出来,放到“窗体母版页”中,在需要的时候嵌套就可以。
巧用窗体母版项:
下面就开始行动(本文是以VisualStudio2013作为编程环境,可能在某些步骤与其他版本有所出入,请自行注意):
1、在项目中添加一Web窗体母版页test.Master:右键项目—添加—新建项—Web窗体母版页;
复制代码代码如下:
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="test.master.cs" Inherits="Web.test1" %>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<asp:ContentPlaceHolder ID="head" runat="server">
<form id="form1" runat="server">
<div>
</asp:contentplaceholder>
</div>
</form>
<!--html>
2、在窗体母版页test.Master的标记之间添加CSS、JS等引用(这里先只添加CSS文件为例):
复制代码代码如下:
<link href="css/common.css" rel="stylesheet"> <%--添加引用CSS文件--%>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
</asp:contentplaceholder>
3、编辑窗体母版页test.Master,添加每个网页的公共内容(此处以网页布局为上图的布局为例,三个div的css样式就暂不说明):
复制代码代码如下:
<form id="form1" runat="server">
<div id="top"> <%--每个网页的公共样式:网页头部--%>
<h1>某某某网站</h1>
</div>
<div id="main"> <%--每个网页的不同样式:网页主体内容--%>
<%--此处为每个嵌套此母版的各个网页的不同内容--%>
</asp:contentplaceholder>
</div>
<div id="footer"> <%--每个网页的公共样式:网页版权信息区--%>
<p>版权所有:******</p>
</div>
</form>
4、在每个网页中嵌套窗体母版页test.Master:右键项目—添加—新建项—包含母版页的Web窗体test.aspx,在选择母版页对话框中选择test.Master,确定,生成的网页为:
复制代码代码如下:
<%@ Page style="border-left-color: rgb(0, 153, 204); border-left-width: 1px; border-left-style: solid; padding: 0px 3px; margin: 3px auto 0px; width: 640px; background-color: rgb(242, 246, 251); clear: both; border-top-color: rgb(0, 153, 204); border-top-width: 1px; border-top-style: solid; border-right-color: rgb(0, 153, 204); border-right-width: 1px; border-right-style: solid;"> 复制代码代码如下:
<%@ Page style="border-left-color: rgb(0, 153, 204); border-left-width: 1px; border-left-style: solid; padding: 0px 3px; margin: 3px auto 0px; width: 640px; background-color: rgb(242, 246, 251); clear: both; border-top-color: rgb(0, 153, 204); border-top-width: 1px; border-top-style: solid; border-right-color: rgb(0, 153, 204); border-right-width: 1px; border-right-style: solid;"> 复制代码代码如下:
<%@ Page style="border-left-color: rgb(0, 153, 204); border-left-width: 1px; border-left-style: solid; padding: 0px 3px; margin: 3px auto 0px; width: 640px; background-color: rgb(242, 246, 251); clear: both; border-top-color: rgb(0, 153, 204); border-top-width: 1px; border-top-style: solid; border-right-color: rgb(0, 153, 204); border-right-width: 1px; border-right-style: solid;"> 复制代码代码如下:
<%@ Master Language="C#" MasterPageFile="~/test.Master" AutoEventWireup="true" CodeBehind="m_common.master.cs" Inherits="Web.admin.m_common" %>
</asp:content>
<%--此处为嵌套“子母版页”的各个网页的不同内容--%>
</asp:contentplaceholder>
</asp:content>
注意,代码第一行的MasterPageFile=“~/test.Master”即要嵌套的母版页的地址,“~”为当前目录。
嵌套网页母版项的好处:
可以利用VisualStudio中的窗体母版页来将每个页面中相同的部分进行封装,在创建相同结构的网页时,便可以直接嵌套这个窗体母版页,避免了代码的重复,提高了代码的复用性;另外,如果要修改一个栏目甚至整个网站的风格,则只需修改母版页以及母版页中引入的<script>等文件,提高了代码的可维护性,充分体现了OOP的思想。
希望本文所述对大家的asp.net程序设计有所帮助。