使用分页数据源了解最后一页

时间:2014-07-04 12:13:52

标签: c# asp.net

我使用分页数据源类来实现分页,我不明白IsLastpage是如何工作的?我没有在MSDN中找到关于IsLastpage的很多描述

根据页面大小,我从数据库中检索记录。

见下文:

    //pgsource is my Paged Data source object
      pgsource.DataSource = Bl.getEvents(true);
      pgsource.PageSize = 4;
      pgsource.AllowPaging = true;

让Bl.getEvents(true)返回11条记录

但每次我从sql返回每页4条记录。所以当我每次尝试使用IsLastpage它返回false时。我真的不明白如何分页,服务器端分页工作分页数据源。我尝试过使用

  • 允许分页= true,
  • 允许服务器端分页= true

Pgsource截图:

enter image description here

0 个答案:

没有答案