📄 site.master
字号:
<%@ Master Language="C#" CodeFile="Site.master.cs" Inherits="Site_master" %>
<!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>ASP.NET 2.0</title>
<style>
<!--
td { font-family: verdana; font-size: 10pt; }
-->
</style>
</head>
<body topmargin="0" leftmargin="0" rightmargin="0">
<form id="form1" runat="server">
<table width="100%" cellspacing="0" cellpadding="0">
<!-- Banner -->
<tr height="56pt" bgcolor="#0a6cce">
<td>
<table width="100%" cellspacing="0" cellpadding="4">
<tr>
<td>
<span style="color: white; font-family: verdana; font-size: 24pt; font-weight: bold; font-style: italic">
<asp:ContentPlaceHolder ID="Title" Runat="server">
Title goes here
</asp:ContentPlaceHolder>
</span>
</td>
</tr>
</table>
</td>
</tr>
<!-- 1-pixel border -->
<tr height="1px" bgcolor="gray">
<td width="32px"></td>
<td width="1px"></td>
<td></td>
</tr>
<!-- Description -->
<tr bgcolor="lightyellow">
<td>
<table width="100%" cellspacing="0" cellpadding="4">
<tr>
<td>
<asp:ContentPlaceHolder ID="Description" Runat="server">
Description goes here
</asp:ContentPlaceHolder>
</td>
</tr>
</table>
</td>
</tr>
<!-- 1-pixel border -->
<tr height="1px" bgcolor="gray">
<td width="32px"></td>
<td width="1px"></td>
<td></td>
</tr>
<tr>
<td>
<table width="100%" cellpadding="8">
<tr>
<td>
<asp:ContentPlaceHolder ID="Main" Runat="server" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -