2012-05-22 81 views
1

我有對象 的名單,我想結合這個名單與TreeView控件創建樹狀 我的課是如下使用列表作爲數據源

public class Tax 
{ 
    public string TaxName { get; set; } 
    public string TaxPresentationId { get; set; } 
    public string ParentTaxName { get; set; } 
    public string PresentationTaxName { get; set; } 
    public string RoleURl { get; set; } 
    public List<Tax> Child { get; set; } 

    public Tax() 
    { 
     Childrens = new List<Tax>(); 
    } 
} 

我有一個列表中的所有數據

List<Tax> lstreportdata = new List<Tax>(); 

如何將此列表綁定到樹視圖控件中。 在此先感謝。

+0

是肯定的人,但請首先回答這個問題 –

+0

您可以使用這個樹視圖來查看它的一個Jquery樹獲取數據源並填充一棵樹http://www.blueshoes.org/_bsJavascript/components/tree/examples/ example_json.html – mehmood

+0

謝謝mehmood,但我需要使用asp.net treeview控件 –

回答

相關問題