最近我在看一个成品代码时候发现,他的分页程序有这么一段
<%
order=0
count=rs.RecordCount
pagesize=5
pagecount=count\(pagesize+1)+1
page=request.QueryString("page")
if page="" then
page=1
end if
%>
我不太明白的是,他的这句起什么作用?pagecount=count\(pagesize+1)+1
它是为了求得什么值吗?
下面应的代码有这么一段
<%
if not rs.eof then
rs.Move (page-1)*pagesize
cc=(page-1)*pagesize
do while (not rs.eof) and (order<pagesize)
cc=cc+1
order=order+1
%>
请前辈指点一下!