I am using the Repeater control. I can have around 300 records maximum.
I donot want to use Paging. There can be a provision to show More records with the help of More button at the bottom of Repeater.
Do you have any sample like that demonstrates such usage?
As the commenter says you do need paging
You would need to use the
PagedDataSourceas the data source for the repeater. This link shows how. Because the repeater doesn’t offer any ‘out of the box’ paging control you are free to code up whatever paging control you want – in your case the more button. From the link the databind would be something likeYour paging might be something linq
Please note the above is pseudocode just to give you the idea and get you started.
ALSO
I posted a previous answer about efficient paging which I think would be relevant in your case.
Hope this helps