<%
'计算分页的几种方法
'// iRecordCount为要计算的页面总数
'// iRecordCount为记录集数
'// iPageSize为每页记录数
'// 一:
If iRecordCount Mod iPageSize = 0 Then
iPageCount = Int(iRecordCount / iPageSize)
Else
iPageCount = Int(iRecordCount / iPageSize) + 1
End If
'// 二:
iPageCount = Int(iRecordCount / iPageSize * -1) * -1
'// 三:
iPageCount = Abs(Int( - (iRecordCount / iPageSize)))
'// 四:
iPageCount = Fix(iRecordCount / iPageSize) - CInt(CBool(iRecordCount Mod iPageSize))
%>
'计算分页的几种方法
'// iRecordCount为要计算的页面总数
'// iRecordCount为记录集数
'// iPageSize为每页记录数
'// 一:
If iRecordCount Mod iPageSize = 0 Then
iPageCount = Int(iRecordCount / iPageSize)
Else
iPageCount = Int(iRecordCount / iPageSize) + 1
End If
'// 二:
iPageCount = Int(iRecordCount / iPageSize * -1) * -1
'// 三:
iPageCount = Abs(Int( - (iRecordCount / iPageSize)))
'// 四:
iPageCount = Fix(iRecordCount / iPageSize) - CInt(CBool(iRecordCount Mod iPageSize))
%>
标签:
asp,分页
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“asp下计算分页的几种方法”评论...