1栏分页显示(附显示的形式前页 后页)

2016-01-29 17:34 5 1 收藏

1栏分页显示(附显示的形式前页 后页),1栏分页显示(附显示的形式前页,后页)

【 tulaoshi.com - ASP 】

  显示的形式
id name
1 juliet
2 cristine
3 boy
4 girl
首页 前页 后页 尾页 页数:1/4 4记录/页 总记录数:13条
代码:
<!--page.asp--
<!--#include file="conn.asp"--
<html
<body bgcolor="#FFFFFF" text="#000000"
<table width="60%" border="1" align="center"
<%
dim rs
dim sql
msg_per_page = 4 '定义每页显示记录条数
set rs = server.createobject("adodb.recordset")
sql = "select * from page order by id" '改成你自己的SQL语句
rs.cursorlocation = 3 '使用客户端游标,可以使效率提高

rs.pagesize = msg_per_page '定义分页记录集每页显示记录数
rs.open sql,conn,0,1

if err.number<0 then '错误处理
response.write "数据库操作失败:" & err.description
err.clear
else
if not (rs.eof and rs.bof) then '检测记录集是否为空
totalrec = RS.RecordCount 'totalrec:总记录条数
if rs.recordcount mod msg_per_page = 0 then '计算总页数,recordcount:数据的总记录数
n = rs.recordcountmsg_per_page 'n:总页数
else
n = rs.recordcountmsg_per_page+1
end if

currentpage = request("page") 'currentpage:当前页
If currentpage < "" then
currentpage = cint(currentpage)
if currentpage < 1 then
currentpage = 1
end if
if err.number < 0 then
err.clear
currentpage = 1
end if
else
currentpage = 1
End if
if currentpage*msg_per_page totalrec and not((currentpage-1)*msg_per_page < totalrec)then
currentPage=1
end if
rs.absolutepage = currentpage 'absolutepage:设置指针指向某页开头
rowcount = rs.pagesize 'pagesize:设置每一页的数据记录数

dim i
dim k
%
<tr align="center" valign="middle"
<td width="50%"ID</td
<td width="50%"name</td
</tr
<%do while not rs.eof and rowcount 0%
<tr align="center" valign="middle"
<td width="25%"<%=rs("id")%</td
<td width="25%"<%=rs("testname")%</td
</tr
<%
rowcount=rowcount-1
rs.MoveNext
loop
end if
end if
rs.close
set rs=nothing
%

</table
<table border="0" align="center"
<tr
<td align="center" valign="middle"
<%call listPages()%
</td
</tr
</table
</body
</html
<%
sub listPages()
if n <= 1 then exit sub
%
<p<span class=smallFont
<%if currentpage = 1 then%
<font color=darkgray face="arial" Top Previous</font
<%else%
<font color=black face="arial"<a href="<%=request.ServerVariables("script_name")%?page=1"Top</font</a
<a href="<%=request.ServerVariables("script_name")%?page=<%=currentpage-1%"
<font color=black face="arial" Previous</a</font
<%end if%
<%if currentpage = n then%
<font color=darkgray face="arial" Next Bottom</font
<%else%
<font color=black face="arial" <a href="<%=request.ServerVariables("script_name")%?page=<%=currentpage+1%"Next</a
<a href="<%=request.ServerVariables("script_name")%?page=<%=n%"Bottom</a</font
<%end if%
<font color=black face="arial"
  Page:<%=currentpage%/<%=n%pages  <%=msg_per_page%notes/page   Total:<%=totalrec%notes</font</span</p
<%end sub%


 

来源:https://www.tulaoshi.com/n/20160129/1501988.html

延伸阅读
标签: Web开发
using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; using Sy...
标签: 电脑入门
在Word2007文档窗口中可以设置页面显示比例,以调整Word2007文档窗口的大小。显示比例仅仅调整文档窗口的显示大小,并不会影响实际的打印效果。设置Word2007页面显示比例的步骤如下所述: 第1步,打开Word2007文档窗口,切换到视图功能区。在显示比例分组中单击显示比例按钮,如图1所示。 图1 单击显示比例按钮 第2步,在打开的显示比例...
金山wps竖版双页显示操作的方法   我们常常看到一些网友使用金山wps的竖版双页显示操作,如果是在浏览排版效果的时候,采用双页显示操作,可以减少不少的工作量。不过,很多网友却不知道这是怎么做到的。下面,图老师小编就给大家分享一下金山wps竖版双页显示操作的方法! 1.首先,打开wps文字,正常的输入; 2.写到下一...
标签: word
使word2007的不同页显示不同页眉 其实是很简单也很实用的操作。在03版word中页眉工具项目较多,设置分类较细,很多人会用的插入分页符设置不同页眉显示。但07版word中功能有所整合,好多人就找不到相应的设置选项了,因为最近很多人问,在此分享给大家。想要使文档接下来的部分与前面显示不同的页眉页脚,你需要: word2007 插...

经验教程

171

收藏

19
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部