views:

132

answers:

1
+1  A: 

Use a templatecolumn and in the itemtemplate add another nested list control. Set its datasource property to your telephone list.

This article explains this approach in detail.

You can ignore the example code about RowFiltering in the RowDataBound event and just set the datasource to your list.

Craig McKeachie
+1 correct - to set the datasource just do: DataSource=<%# Eval("Tel") %>
eglasius