menu.aspx
资源名称:web.rar [点击查看]
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:1k
源码类别:
OA系统
开发平台:
ASP/ASPX
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="menu.aspx.cs" Inherits="web_personnel_curricula_vitae_menu" %>
- <!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>
- <asp:TreeView ID="TreeView1" runat="server" ImageSet="Arrows" Style="position: relative" DataSourceID="XmlDataSource1">
- <ParentNodeStyle Font-Bold="False" />
- <HoverNodeStyle Font-Underline="True" ForeColor="#5555DD" />
- <SelectedNodeStyle Font-Underline="True" ForeColor="#5555DD" HorizontalPadding="0px"
- VerticalPadding="0px" />
- <NodeStyle Font-Names="Verdana" Font-Size="8pt" ForeColor="Black" HorizontalPadding="5px"
- NodeSpacing="0px" VerticalPadding="0px" />
- <DataBindings>
- <asp:TreeNodeBinding DataMember="parent" TextField="text" />
- <asp:TreeNodeBinding DataMember="child" NavigateUrlField="url" TargetField="target"
- TextField="text" />
- </DataBindings>
- </asp:TreeView>
- <asp:XmlDataSource ID="XmlDataSource1" runat="server" DataFile="~/web/personnel/curricula_vitae/employee_menu.xml">
- </asp:XmlDataSource>
- </div>
- </form>
- </body>
- </html>