tags:

views:

7

answers:

0

In my Database I have a table which from which I pull a List of "TaskItem" items (being tasks which when strung together make up a particular job).

Each TaskItem contains a "PreviousTask" field which points it to its preceding TaskItem (which is a string field made up of a concatenation of the composite primary keys determining that particular previous TaskItem).

The first TaskItem has a PreviousTask field of null.

It has the treeview structure (i.e. each child has only one parent but any parent may have many children).

I want to make a Gantt chart with this list and I was wondering if I can use the asp.net treeview to organise the info?

Or am I barking up the wrong tree(view)?