Menu.aspx
上传用户:szraylite
上传日期:2018-06-06
资源大小:11546k
文件大小:1k
源码类别:

软件测试

开发平台:

Java

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Menu.aspx.cs" Inherits="Main_Skin_Menu" %>
  2. <html xmlns="http://www.w3.org/1999/xhtml" >
  3. <head runat="server">
  4.     <title>无标题页</title>
  5.     <script src="Js/Main.js"></script>
  6.     <script type="text/javascript">
  7.         loadCss(top._skinId,'Page.css');
  8.     </script>
  9. </head>
  10. <body>
  11.     <form id="form1" runat="server">
  12.         <asp:TreeView ID="TreeView1" runat="server" ShowLines="True" ExpandDepth="1" ImageSet="XPFileExplorer" NodeIndent="15">
  13.             <Nodes>
  14.                 <asp:TreeNode Text="新建节点" Value="新建节点">
  15.                     <asp:TreeNode Text="系统介绍" NavigateUrl="javascript:top.myTab.Cts('系统介绍','default1.aspx')" Value="系统介绍"></asp:TreeNode>
  16.                     <asp:TreeNode Text="tab页的调用" NavigateUrl="javascript:top.myTab.Cts('tab页的调用','default3.aspx')" Value="tab页的调用"></asp:TreeNode>
  17.                 </asp:TreeNode>
  18.             </Nodes>
  19.             <ParentNodeStyle Font-Bold="False" />
  20.             <HoverNodeStyle Font-Underline="True" ForeColor="#6666AA" />
  21.             <SelectedNodeStyle BackColor="#B5B5B5" Font-Underline="False" HorizontalPadding="0px" VerticalPadding="0px" />
  22.             <NodeStyle Font-Names="Tahoma" Font-Size="8pt" ForeColor="Black" HorizontalPadding="2px" NodeSpacing="0px" VerticalPadding="2px" />
  23.         </asp:TreeView>
  24.     </form>
  25. </body>
  26. </html>