<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %> 
  
<!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"> 
    <title>Master Page</title> 
</head> 
<body> 
    <form id="form1" runat="server"> 
    <div> 
        <asp:contentplaceholder id="Header" runat="server"> 
            <asp:Label ID="Label1" runat="server" Text="Header..." Font-Bold="True" Font-Italic="False" Font-Names="Verdana" Font-Size="20pt"></asp:Label></asp:contentplaceholder> 
    </div> 
    <br /> 
    <div> 
        <asp:contentplaceholder id="Content" runat="server"> 
        </asp:contentplaceholder> 
    </div> 
    <br /> 
    <div> 
        <asp:contentplaceholder id="Footer" runat="server"> 
            <asp:Label ID="Label2" runat="server" Text="Footer..." Font-Names="Verdana" Font-Size="15pt"></asp:Label></asp:contentplaceholder> 
    </div> 
    </form> 
</body>
</html>