vote up 3 vote down star

Hi there,

I have already created a webpart to show the data from list, but I really want is to only show top 5 records from that list (by using CAML query).

Does anyone know how to do this? Many thanks.

<Query>
   <OrderBy>
      <FieldRef Name='ID' Ascending='False' />
   </OrderBy>
</Query>
flag

47% accept rate

2 Answers

vote up 5 vote down check

You could set the RowLimit property of your SPQuery object.

The <RowLimit> tag is in the schema definition of a view (direct child of <View>) and therefore cannot be nested inside a <Query> tag.

link|flag
Thank you very much. It works. – DotNet User May 5 at 13:44
vote up 0 vote down

The below code shows top 5 records from the list (by using CAML query).

SPQuery spQuery = new SPQuery(); spQuery.Query = ""; spQuery.RowLimit = 5;

link|flag

Your Answer

Get an OpenID
or

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