FineUI/FineUI.Examples/tree/databind/tree_sitemap.aspx
三生石上 79ad9e6bc2 v4.2.3
2016-01-10 01:19:30 -05:00

26 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="tree_sitemap.aspx.cs" Inherits="FineUI.Examples.tree.databind.tree_sitemap" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<meta name="sourcefiles" content="~/tree/databind/Web.sitemap" />
<link href="../../res/css/common.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" runat="server" />
<f:Tree ID="Tree1" Width="650px" ShowHeader="true" Title="树控件(绑定到 SiteMap" EnableCollapse="true"
runat="server">
<Mappings>
<f:XmlAttributeMapping From="url" To="NavigateUrl" />
<f:XmlAttributeMapping From="title" To="Text" />
<f:XmlAttributeMapping From="description" To="ToolTip" />
<f:XmlAttributeMapping From="target" To="Target" />
</Mappings>
</f:Tree>
<asp:XmlDataSource ID="XmlDataSource2" runat="server" DataFile="~/tree/databind/Web.sitemap"></asp:XmlDataSource>
</form>
</body>
</html>