tags:

views:

81

answers:

2

Is there any data control available (in .NET) for a complex object (object with children objects). Something like a gridview but with hiperlinks which will take you to child object.

A: 

You can nest ListView (or gridview if that makes sense for the scenario). There is also a treeview control.

Check this question for an example of the nested listview (it uses IGrouping, but the concept is the same - just set the DataSource to the Childs Property ): http://stackoverflow.com/questions/172934/displaying-an-igrouping-with-nested-listviews

eglasius
A: 

Use Microsoft Dynamic Data. www.asp.net/dynamicdata/

Mohammad Tayseer