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

23 lines
974 B
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_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" />
<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" 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>