Click here to Skip to main content
15,886,422 members
Articles / Web Development / ASP.NET

Nested Master Page in VS 2008

Rate me:
Please Sign up or sign in to vote.
3.39/5 (20 votes)
8 Feb 2008CPOL3 min read 85.2K   2.4K   27  
In visual studio 2008 nested master page concept is introduced, to make page template
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="ParentMaster.master.cs" Inherits="ParentMaster" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <link href="App_Themes/Simple/Default.css" rel="stylesheet" type="text/css" />
    <title>Parent Master Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <div id="Header">
            PAGE HEADER
        </div>
        <div id="body">
            <asp:ContentPlaceHolder id="contentMain" runat="server">
            
            </asp:ContentPlaceHolder>
        </div>
        <div id="Footer">
            @PAGE FOOTER
        </div>
    </div>
    </form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Canada Canada
Software engineer with broad experience in enterprise application development, product deployment automation, software test & test automation, application & system management, and manage big projects and team using proven agile technologies.

Passionate on Microsoft technologies, developed solutions using C#, .net (1.1/2.0/3.5/4), SQL Server (2005/2008). Work on Powershell, SSRS, SSIS, WPF, Ajax, WCF, JQuery.

Develop innovative application with cutting edge technologies always boosting inside.

Comments and Discussions