Possible Duplicate:
Treeview from sql table
I am having SQL table like below with three columns id,parentid and name.. I have to show it in tree view:
id parentid name
1 NULL outlook
2 1 overcast
3 1 rainy
4 1 sunny
5 2 yes
6 3 wind
7 4 humidity
8 6 strong
9 6 weak
10 7 high
11 8 no
12 9 yes
13 10 no
14 15 yes
15 7 normal
Please help me if any one knows....
I want output as
outlook
- overcast - yes - rainy - wind - strong - no - weak - yes -sunny - humidity -high -no -normal -yes
There is only one root node.then comes child nodes and sub-child nodes like that..