TreeView 如何绑定 xml

TreeView 不能用DataSet作为数据源, 不过可以用XmlDataSoruce作为数据源:
    if(!IsPostBack)
     {
        XmlDataSource xds = new XmlDataSource();
        xds.DataFile = @"..\XMLFile.xml";
        xds.XPath = @"./node()/*";   //设置xpath, 本例中是绑定除根节点以外的所有节点
        this.TreeView1.DataSource = xds;
        this.TreeView1.DataBind();
     }

posted on 2008-04-25 13:53  Daniel Luo  阅读(395)  评论(0编辑  收藏  举报

导航