FineUI/FineUI.Examples/tree/databind/tree_datasource.aspx
三生石上 15588d275b v4.2.4.1
2017-09-05 10:49:48 +08:00

22 lines
895 B
Plaintext
Raw Permalink 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_datasource.aspx.cs"
Inherits="FineUI.Examples.tree.databind.tree_datasource" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<meta name="sourcefiles" content="~/tree/databind/website.xml" />
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" runat="server" />
<f:Tree ID="Tree1" Width="650px" EnableSingleExpand="true" EnableCollapse="true"
ShowHeader="true" Title="树控件(绑定到 XmlDataSource" runat="server">
</f:Tree>
<asp:XmlDataSource ID="XmlDataSource1" runat="server" DataFile="~/tree/databind/website.xml"></asp:XmlDataSource>
<br />
注意:这个树启用了 EnableSingleExpand也就是说同一级目录同时只能展开一个。
</form>
</body>
</html>