這段時間在做網站,想起了曾經玩過的XML動態綁定TreeView的東西
xml文件:managerList.xml
<?xml version="1.0" encoding="utf-8" ?>
<items id="首頁">
<item id="用戶管理" url="user.aspx"/>
<item id="新聞管理" url="newsManager.aspx"/>
<item id="新聞圖片管理" url="news_jpg_Manager.aspx"/>
<item id="新聞評論管理" url="news_Remark.aspx"/>
<item id="退出" url="exit.aspx"/>
</items>引用System.xml;
以下是功能代碼:
void databind_treeView()
{
//新建個DataSource指向要綁定的文件
XmlDataSource xds = new XmlDataSource();
xds.DataFile = Server.MapPath("managerList.xml");
XmlDocument xmlDocument = xds.GetXmlDocument();
//把根節點的東東和treeView實例根節點群丟進去遞歸
BindXmlToTreeView(xmlDocument.DocumentElement, TreeView1.Nodes);
}
void BindXmlToTreeView(XmlNode node, TreeNodeCollection tnc)
{
//獲得節點字段值
string strId = node.Attributes["id"].Value;
string strUrl = node.Attributes["url"].Value;
tnc.Add(new TreeNode(strText,strUrl));
foreach (XmlNode n in node.ChildNodes)
{
//指向子節點和父節點的子節點群
BindXmlToTreeView(n, tnc[tnc.Count - 1].ChildNodes);
}
}