Home
Browse all 647 examples
Download all 647 examples
Download sample chapters
Reviews
Errata
Acknowledgments
Links on .NET
Paradoxal Press
Buy directly from Paradoxal Press at $33.99 (Save 43%)
Category: Programming
Level: Beginner to seasoned
900 pages
ISBN-10 097661322-0
ISBN-13 978-097661322-0
$59.99 USA
$79.99 CANADA
|
Listing 23-78 extracted from chapter ASP.NET 2
Listing 23-77< > Listing 23-79
Example_23_78_to_rename_MyMasterPageNested.master
<%@ master language="C#" MasterPageFile="~/MyMasterPage.master"%>
<asp:Content ContentPlaceHolderID=MyContentPH runat="server">
<table id="Tbl1" width="100%" height="30px"
cellspacing="0" cellpadding="0">
<tr><td width="100%" align="center" bgcolor="olive">Top</td></tr>
</table>
<table id="Tbl2" width="100%" height="50%"
cellspacing="0" cellpadding="0">
<tr>
<td width="60px" align="center" bgcolor="red">Left</td>
<td align="center">
<asp:contentplaceholder id="MyContentPH2" runat="Server">
</asp:contentplaceholder>
</td>
<td width="60px" align="center" bgcolor="red">Right</td>
</tr>
</table>
<table id="Tbl3" width="100%" height="30px"
cellspacing="0" cellpadding="0">
<tr> <td width="100%" align="center" bgcolor="olive">Bottom</td>
</tr>
</table>
</asp:Content>
Copyright Patrick Smacchia 2006 2007
|