Hi ,
I have two tables in Sql Server Database:Table1: Category - Columns Category_ID, categoryNameTable2: SubCategory --Columns SubCategory_ID, SubCategoryName, Category_ID
How to create treeviews for each category?Category Table Data:1 Item12 Item23 Item34 Item4
SubCategory Table Data1 SubItem1 Item12 SubItem2 Item13 SubItem3 Item14 SubItem4 Item25 SubItem5 Item26 SubItem6 Item37 Subitem7 Item3
How to display the below treeviews/Lists on UI
Item1 Item2 Item3 Item4 SubItem1 SubItem4 SubItem6 SubItem2 SubItem5 SubItem7 SubItem3
Please provide me the asp.net and c# code that will generate the above UI. I am new to c#..
Thanks