FineUI/FineUI.Examples/tree/databind/tree_sitemap.aspx
2013-11-01 14:13:51 +08:00

25 lines
1.0 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>
<link href="../../css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<x:PageManager ID="PageManager1" runat="server" />
<x:Tree ID="Tree1" Width="650px" ShowHeader="true" Title="树控件(绑定到 SiteMap" EnableFrame="true" EnableCollapse="true"
runat="server">
<Mappings>
<x:XmlAttributeMapping From="url" To="NavigateUrl" />
<x:XmlAttributeMapping From="title" To="Text" />
<x:XmlAttributeMapping From="description" To="ToolTip" />
<x:XmlAttributeMapping From="target" To="Target" />
</Mappings>
</x:Tree>
<asp:XmlDataSource ID="XmlDataSource2" runat="server" DataFile="~/tree/databind/Web.sitemap"></asp:XmlDataSource>
</form>
</body>
</html>