⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chkpage.inc

📁 9seek 留言本源代码5.0版
💻 INC
字号:
<%
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -