⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 masterpage.master

📁 数据库学习的绝好例子简单的数据库经典入门
💻 MASTER
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -