Development ASP.Net Tutorial

File: Default.aspx
<%@ Page Language="C#" MasterPageFile="Simple1.master" AutoEventWireup="true" 
    CodeFile="Default.aspx.cs" 
    Inherits="Default" 
    Title="Dynamic Masters"
%>

    


        This content page is currently bound to 
        <% =this.MasterPageFile %>.
    



File: Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class Default : System.Web.UI.Page
{
    protected void Page_PreInit(object sender, EventArgs e)
    {
    MasterPageFile = "simple2.master";
    }
}
File: simple1.master
<%@ Master  Language="C#" %>



    Hello, master pages


    
    

                    BorderWidth="1px" Height="50px" Width="100%">
                            Text="Programming ASP.NET 3.5" Font-Size="XX-Large" ForeColor="Yellow" Width="100%">
        
        
        
                    BorderWidth="1px" Width="100%" HorizontalAlign="Right">
                            Font-Bold="True" Font-Names="Lucida Console"
                Text="Dino Esposito" Font-Size="Large" ForeColor="Orange">
                
    

    


File: simple2.master
<%@ Master  Language="C#"%>



    Hello, master pages


    
    

                    BorderWidth="1px" Height="50px" Width="100%">
                            Text="Programming ASP.NET 3.5" Font-Size="XX-Large" ForeColor="Yellow" Width="100%">
        
        
        
                    BorderWidth="1px" Width="100%" HorizontalAlign="Right">
                            Font-Bold="True" Font-Names="Lucida Console"
                Text="Dino Esposito" Font-Size="Large" ForeColor="Orange">