O
Olav Tollefsen
I have a somewhat complex data structure to display on a web page:
Item A
- Sub Item 1: a, b, c, ...
- Sub Item 2: a, b, c, ...
- ...
Item B
- Sub Item 1: a, b, c, ...
- Sub Item 2: a, b, c, ...
- ...
Item ...
- Sub Item 1: a, b, c, ...
- Sub Item 2: a, b, c, ...
- ...
I have all the main items stored in a SortedList which again contains a
SortedList with sub items, which again contains a SortedList with the end
nodes (a, b, c, ...).
What is the best way to display this on a web page? Are there any samples
doing something similar?
Item A
- Sub Item 1: a, b, c, ...
- Sub Item 2: a, b, c, ...
- ...
Item B
- Sub Item 1: a, b, c, ...
- Sub Item 2: a, b, c, ...
- ...
Item ...
- Sub Item 1: a, b, c, ...
- Sub Item 2: a, b, c, ...
- ...
I have all the main items stored in a SortedList which again contains a
SortedList with sub items, which again contains a SortedList with the end
nodes (a, b, c, ...).
What is the best way to display this on a web page? Are there any samples
doing something similar?