📄 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 runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div style="text-align: center">
<table style="width: 800px; height: 600px">
<tr>
<td colspan="3" style="width: 800px; height: 50px; background-color: #ffffcc">
<span style="font-size: 24pt">WorkOnlineSystem-Make work easier!</span></td>
</tr>
<tr>
<td colspan="3" style="width: 800px; height: 50px; border-bottom: black 1px solid; text-align: right;">
<asp:Label ID="lblPersonInfo" runat="server" Font-Size="Small"></asp:Label></td>
</tr>
<tr>
<td rowspan="2" style="width: 150px; height: 500px; text-align: left">
<asp:TreeView ID="TreeView1" runat="server" ExpandDepth="0" Height="400px" BorderColor="Black" BorderStyle="Dashed" BorderWidth="1px">
<Nodes>
<asp:TreeNode SelectAction="Expand" Text="公司决策" Value="公司决策">
<asp:TreeNode Text="查看决策" Value="查看决策" NavigateUrl="~/CompanyDecision/CD_List.aspx"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode SelectAction="Expand" Text="部门决策" Value="部门决策">
<asp:TreeNode Text="查看决策" Value="查看决策" NavigateUrl="~/DepartmentDecision/DD_List.aspx"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode SelectAction="Expand" Text="客户信息" Value="客户信息">
<asp:TreeNode Text="客户列表" Value="客户列表" NavigateUrl="~/ClientInfo/Client_List.aspx"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode SelectAction="Expand" Text="订单信息" Value="订单信息">
<asp:TreeNode Text="订单列表" Value="订单列表" NavigateUrl="~/OrderInfo/Order_List.aspx"></asp:TreeNode>
</asp:TreeNode>
<asp:TreeNode Text="内部BBS" Value="内部BBS" NavigateUrl="~/BBS/BBS_List.aspx"></asp:TreeNode>
</Nodes>
<ParentNodeStyle Font-Names="楷体_GB2312" Font-Size="X-Large" />
<RootNodeStyle Font-Names="楷体_GB2312" Font-Size="Large" />
<LeafNodeStyle BackColor="White" />
<NodeStyle Font-Names="楷体_GB2312" Font-Size="Large" />
</asp:TreeView>
</td>
<td colspan="2" rowspan="2" style="width: 650px; height: 500px" valign="top">
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
</asp:contentplaceholder>
</td>
</tr>
<tr>
</tr>
</table>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -