allisonbaboon
New Member
Hi, <BR><BR>Is there any ASP.Net solution to build a hierarchial structure on the fly (in a way similar to windows explorer), using ASP.Net. There is no limitation on depth of hierarchy. <BR><BR>I have 2 sets of collection of objects. Say, <BR>Set-1 contains item/objects like "IGroup1", "IGroup2", "IGroup3" etc., and <BR>Set-2 contains items like "Item1", "Item2", "Item3" etc. <BR><BR>Now, I want to design an web based interface diplaying these 2 sets of items, so that the user can either drag-drop or select the items and can create new Group Items, say "IGroup-X", which can have collection of groups and items under it. <BR><BR>Does the "Tree-View control" gives me the ability to do this ?Your best bet is probably going to be building the data structure in an xml format, or xml file. That way you can "nest" your groups and have a clear definition of what they should be. it also gives you a nice way to store/retrieve the data.