I can use nested repeater to show my grouped data on a page (according to this: http://goo.gl/sH6g). In my case I have Category-Products structure and want to show each category and its products under it.

But here are my problems:

  1. How can I limit number of products showing under each category. I want to determine for example 5 newest products for each category?
  2. How can I conditionally limit the number of products. For example I want to determine if there is no subcategory for a specific category show all products else show 5 newest products?
  3. Is repeater suitable for that work? if NOT which data control should I use?

Please give me some guidelines!.

link|improve this question

54% accept rate
feedback

1 Answer

You can limit the amount of records from your SQL statements.

For example, you can use SELECT TOP like this

SELECT TOP 5 * FROM Products Where CategoryId = 1

You can also use LIMIT

SELECT * FROM Products Where CategoryId = 1
LIMIT 5

Or for LINQ - see this post http://stackoverflow.com/questions/4221/linqdatasource-can-you-limit-the-amount-of-records-returned

link|improve this answer
you know I used LinqDataSource and DBML. – mahdiahmadirad Jul 4 '10 at 15:16
Check this answer out stackoverflow.com/questions/4221/… – Marko Jul 4 '10 at 20:58
I've included the link in the answer as well. There's no reason to limit from the Repeater since your DS will still be selecting all the records. If you still can't get it to work, I'll write you a c# solution :) Good luck – Marko Jul 4 '10 at 21:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.