Hi,
I have to create tree type display for all Product Categories. My structure
of DB is like

e.g..
CategoryId ParentCategoryId Category
1 0 Men's Ware
2 1 Full Shirts
3 1 Half Shirts
4 2 Formals
5 4 Cotton
6 4 Wool
7 3 Formals
8 7 Fabric

Here is the display

- Mean' Ware
- Full Shirts
- Formals
- Cotton
**** Actual Products will be here.....***
+ Wool

- Half Shirts
- Formals
+ Fabric

Here all topmost categories have ParentCategoryId = 0, these are displayed
at top(first)
Then I have show drill down tree for each category, showing its sub
categories.

How can I achieve using ASP.Net using VB.

Thanks in Advance
Adhik