views:

6

answers:

2

Is it possible to render a TreeViewControl as an unordered list instead of a table?

+1  A: 

you'd be better off using a recursive loop. the TreeViewControl is not a light-weight control by any means.

hunter
A: 

ASP.NET now allows ControlAdapters, that you can write and completely change the way control appear on the page. You can try writing your own adapter for TreeViewControl.

Akash Kava