How to get radlistview items if you use paging
问题 I'm using radlistview in my asp.net project . The problem that when I have to get all items of radlistview it return only items of the current page. Example : radlistview2.Items.ToList(); Output : I got only 10 elements which are in the first page My Question is : How To get all items in radlistview ??? 回答1: Please try with the below code snippet. ASPX <telerik:RadListView ID="RadListView1" runat="server" OnNeedDataSource="RadListView1_NeedDataSource" AllowPaging="true" PageSize="2">