母版页MasterPage.master文件源代码 |
<%@ 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 id="Head1" runat="server"> <title></title> <link href="css/myfreetemplates.css" rel="stylesheet" type="text/css" /> </head> <body background="http://www.68design.net/art/images/pixi_lime.gif" leftmargin="0" topmargin="0"> <form id="form1" runat="server"> <div align="center"> <table width="763" height="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF"> <tr> <td width="763" height="86" align="right" valign="top"> <img src="http://www.68design.net/art/images/topic.gif"></td> </tr> <tr> <td width="763" height="53" align="right" valign="bottom" background="images/nav_bg.gif"></td> </tr> <tr> <td width="763" height="22" align="right" valign="top"><img src="http://www.68design.net/art/images/toppic2.gif" width= "763" height="22"></td> </tr> <tr> <td width="763" valign="top"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="244" valign="top"> <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"></asp:ContentPlaceHolder> </td> <td valign="top" align="left"> <asp:ContentPlaceHolder ID="ContentPlaceHolder2" runat="server"></asp:ContentPlaceHolder> </td> </tr> </table> </td> </tr> <tr> <td width="763" height="1" background="http://www.68design.net/art/images/pixi_lime.gif"><img src="http://www.68design.net/art/images/pixi_lime.gif" width="1" height="1"></td> </tr> <tr> <td width="763" height="35" align="center" class="baseline">©Copyright Study.Com 2006</td> </tr> </table> </div> </form> </body></html> |