asp.net

位置:IT落伍者 >> asp.net >> 浏览文章

ASP.NET入门教程 2.3.1 多层次的Master页面[2]


发布日期:2020年08月27日
 
ASP.NET入门教程 2.3.1 多层次的Master页面[2]

下面的示例演示了一个Corporate Master页面一个Research department Master页面和最终包含具体内容的Publicationaspx页面下面的代码显示了Corporate页面注意它的内容占位符是在阴影部分定义的

<%@ Master Language=VB %>

<!DOCTYPE html PUBLLC //WC//DTD XHTML //EN

http://wwwworg/TR/xhtml/DTD/xhtmldtd>

<html xmlns=http://wwwworg//xhtml>

<head runat=server>

<title>CorporateMaster</title>

</head>

<body>

Corporation Name

<form id=forml runat=server>

<div>

<asp:contentplaceholder

id=ContentPlaceHolderCorporate

runat=server>

</asp:contentplaceholder>

</div>

</form>

</body>

</html>

[] [] []

               

上一篇:ASP.NET入门教程 2.2.4Master页面中使用级联样式表[1]

下一篇:ASP.NET入门教程 2.3.1 多层次的Master页面[1]