《分页查询实现步骤》
第一步:Common层
1 | public class PageBarHelper |
第二步:DAL层
获取总页数
1 | public int GetRecordCount() |
获取指定范围的分页数据
1 | public DataSet GetPageList(int start,int end) |
第三步:BLL层
获取总页数
1 | public int GetPageCount(int pageSize) |
获取指定范围的分页数据
1 | public List<Book> GetPageList(int pageIndex,int pageSize) |
第四步:Web层
aspx前台
1 | <div class="page_nav" style="margin-top: 50px;"> |
aspx后台
1 | public partial class BookList : System.Web.UI.Page |