I need to create an ASP.net page that has a control on the page that has a five-level TreeView on the left side of the page, and accounting balances on the right side the coincide with each breakdown in the tree. Top level is company, next is group, next is program, etc… and the balances break down accordingly.
I’ve seen that there are controls out there such as TreeView/ListView combination controls that can do this. Can I accomplish this without paying for controls?
Could a treeview do this alone by spanning data across the entire length of the columns since every level will have totals on it?
I simply structured the SQL, and looped through the results, creating divs of varying length to produce the result.