chkpage.inc
来自「9seek 留言本源代码5.0版」· INC 代码 · 共 26 行
INC
26 行
<%
function getPageCount( pageCount, RecordCount, rcPerPage)
pageCount=RecordCount/rcPerPage
pageCount=int(pageCount)
if (RecordCount mod rcPerPage)>0 then
PageCount=PageCount +1
end if
if pageCount<1 then
pageCount=1
end if
getPageCount=pageCount
end function
function getPage(page,pageCount)
if page="" or not isNumeric(page) then
page=1
else
page=int(page)
end if
if page>pageCount then
page=pageCount
end if
getPage=page
end function
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?