<%
'計算分頁的幾種方法
'// 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))
%>