摘要:
算法思想:第1步设定4个数值 1、RowCount获得总记录数 2、PageSize分页记录数 3、PageCount 分页总数 4、PageCurrent当前页 第2步根据总记录数和分页记录数求出总页数 If(RowCount%PageSize==0) { PageCount = RowCount/PageSize; } Else { PageCount = RowCount/PageSize+... 阅读全文
posted @ 2009-03-08 21:04 Valen 阅读(186) 评论(0) 推荐(0) 编辑