如何使用DataList
進行簡單分頁。我不想去CustomPaging
。在GridView中進行數據列表的簡單分頁 - 非定製分頁
是否有任何簡單的方法,如我們在GridView
中進行尋呼。 我願意用DataPager
comtrol
如何使用DataList
進行簡單分頁。我不想去CustomPaging
。在GridView中進行數據列表的簡單分頁 - 非定製分頁
是否有任何簡單的方法,如我們在GridView
中進行尋呼。 我願意用DataPager
comtrol
簡單的方法可能使用PagedDataSource
實施例中具有顯示直放站這裏:Adding Paging Support to the Repeater or DataList with the PagedDataSource Class
// Populate the repeater control with the Items DataSet
PagedDataSource objPds = new PagedDataSource();
objPds.DataSource = Items.Tables[0].DefaultView;
// Indicate that the data should be paged
objPds.AllowPaging = true;
// Set the number of items you wish to display per page
objPds.PageSize = 3;
// Set the PagedDataSource's current page
objPds.CurrentPageIndex = CurrentPage - 1;
repeaterItems.DataSource = objPds;
repeaterItems.DataBind();
隨時隨地分頁datasouce其簡單。這個鏈接可以幫助
http://www.codeproject.com/KB/aspnet/pagingBySreejith%20Thathanattu.aspx