MasterPage Source Code
<%@ 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></title> <asp:ContentPlaceHolder id="head" runat="server"> </asp:ContentPlaceHolder> </head> <body> <form id="form1" runat="server"> <table style="font-family:Arial"> <tr> <td colspan="2" style="width:800px; height:80px; background-color:#3399FF; text-align:center"> <h1> WebSite Header </h1> </td> </tr> <tr> <td style="height:500px; background-color:#66FFFF; width:150px"> <h3>Menu</h3> </td> <td style="height:500px; background-color:#9999FF; width:650px"> <h3>content</h3> <div> <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server"> </asp:ContentPlaceHolder> </div> </td> </tr> <tr> <td colspan="2" style="background-color:#3399FF; text-align:center"> <b>Website Footer</b> </td> </tr> </table> </form> </body> </html>