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

44 lines
942 B
C#

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Text;
using System.IO;
using System.Xml;
namespace FineUI.Examples.tree.databind
{
public partial class tree_document : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
LoadData();
}
}
private void LoadData()
{
string xmlPath = Server.MapPath("~/tree/databind/website.xml");
string xmlContent = String.Empty;
using (StreamReader sr = new StreamReader(xmlPath))
{
xmlContent = sr.ReadToEnd();
}
XmlDocument xdoc = new XmlDocument();
xdoc.LoadXml(xmlContent);
Tree1.DataSource = xdoc;
Tree1.DataBind();
}
}
}