Hey, I created a datalist with a nested repeater. In the nested repeater, I need to limit the amount of records shown (only 10 allowed). However, just limiting the second query into the dataset doesn't work, only grabs 10 records. So I need to figure out a way of only showing 10 results for each. Basically, let's say this is my setup:
category1
- 1
- 2
- 3
- 4
...
- 10
- 11
- 12
- 13
category2
- 1
- 2
- 3
- 4
...
- 20
- 21
- 22
- 23
category3
- 1
- 2
- 3
- 4
...
- 16
- 17
- 18
- 19
Now I need to limit each category to 10 rows only. There are about 22 categories and about 10,000 results. Obviously I need to do my best to just limit it to 220 results, not 10,000!! Any help will be grateful. Thank you.