<%@ 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>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <div> <table border="0" style="width: 800px; height: 600px; background-color: gray;" rules="all" align="center"> <tr> <td style="height: 100px; background-color: teal;" colspan="3" valign="bottom"> HELLO</td> </tr> <tr> <td style="width: 138px; height: 500px;" valign="top"> <asp:LinkButton ID="LinkButton2" runat="server" PostBackUrl="~/Default.aspx">Click </asp:LinkButton><br /> <br /> <asp:LinkButton ID="LinkButton3" runat="server" PostBackUrl="~/Default2.aspx">Click 2</asp:LinkButton><br /> <br /> <asp:LinkButton ID="LinkButton4" runat="server" PostBackUrl="~/Default3.aspx">LinkButton</asp:LinkButton><br /> <br /> </td> <td colspan="2" style="height: 500px" valign="top"> <div id="divContent" style="HEIGHT: 500px; OVERFLOW: auto;"> <asp:contentplaceholder id="ContentPlaceHolder1" runat="server"> </asp:contentplaceholder> </div> </td> </tr> </table> <br /> </div> </form> </body> </html>