For instance, I have a parent, two children, and 3 subchildren for each child.
say each entry has a value of 10 (they all vary, however).. the parent would have a group value of 90,
with each child haivng a group value of 40 each, and the subchild having group values of 10 each.
I need to display the tree structure, and the totals for their group as they're generated.
-parent 90 10
-child 40 10
-child1 10 10
-child2 10 10
-child3 10 10
-child 40 10
-child1 10 10
-child2 10 10
-child3 10 10
I built the tree in asp using recursive database calls, allowing for "unlimited" depth and width of the tree,
but it opened a lot of database connections to do it.