menu.aspx
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:2k
源码类别:

OA系统

开发平台:

ASP/ASPX

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="menu.aspx.cs" Inherits="web_regulation_menu" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>无标题页</title>
  6. </head>
  7. <body>
  8.     <form id="form1" runat="server">
  9.     <div>
  10.         <asp:TreeView ID="TreeView1" runat="server" ImageSet="Arrows" Style="position: relative">
  11.             <ParentNodeStyle Font-Bold="False" />
  12.             <HoverNodeStyle Font-Underline="True" ForeColor="#5555DD" />
  13.             <SelectedNodeStyle Font-Underline="True" ForeColor="#5555DD" HorizontalPadding="0px"
  14.                 VerticalPadding="0px" />
  15.             <Nodes>
  16.                 <asp:TreeNode Text="規章制度管理" Value="規章制度管理">
  17.                     
  18.                     <asp:TreeNode NavigateUrl="file_add.aspx" Target="mainFrame1" Text="添加檔案" Value="添加檔案"></asp:TreeNode>
  19.                     <asp:TreeNode NavigateUrl="dir_list.aspx" Target="mainFrame1" Text="子目錄列表" Value="目錄列表"></asp:TreeNode>
  20.                     <asp:TreeNode NavigateUrl="dir_add.aspx" Target="mainFrame1" Text="添加子目錄" Value="添加目錄"></asp:TreeNode>
  21.                 </asp:TreeNode>
  22.             </Nodes>
  23.             <NodeStyle Font-Names="Verdana" Font-Size="8pt" ForeColor="Black" HorizontalPadding="5px"
  24.                 NodeSpacing="0px" VerticalPadding="0px" />
  25.         </asp:TreeView>
  26.     
  27.     </div>
  28.     </form>
  29. </body>
  30. </html>