masterpage.master

来自「数据库学习的绝好例子简单的数据库经典入门」· MASTER 代码 · 共 30 行

MASTER
30
字号
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Time Tracker TimeSheets</title>
    <link rel="stylesheet" href="stylesheet.css" type="text/css">
</head>
<body>
   <table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tr class="PageHeader">
         <td align="center">Time Tracker TimeSheets</td>
      </tr>
   </table>
    <form id="form1" runat="server">
    <div>
        <asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
        </asp:contentplaceholder>
    </div>
    </form>
   <table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tr class="PageFooter">
         <td align="center">Copyright &copy; 2005 Wrox Press. All rights
         reserved.</td>
      </tr>
   </table>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?