L
Leon Mayne
If I have a datatable which looks like this:
Record Id, Group Id, Name
1, 1, Test 1
2, 1, Test 2
3, 2, Test 3
4, 3, Test 4
Is it possible to use nested repeaters to group the information by GroupId?
e.g. displaying something like
Group 1
Test 1
Test 2
Group 2
Test 3
Group 3
Test 4
I normally do this with two datatables inside a dataset and link the group
id column, but in this case I only have a flat datatable like the above.
TIA
Record Id, Group Id, Name
1, 1, Test 1
2, 1, Test 2
3, 2, Test 3
4, 3, Test 4
Is it possible to use nested repeaters to group the information by GroupId?
e.g. displaying something like
Group 1
Test 1
Test 2
Group 2
Test 3
Group 3
Test 4
I normally do this with two datatables inside a dataset and link the group
id column, but in this case I only have a flat datatable like the above.
TIA