ASP编程常用的分页代码
作者:fdd10669 时间:2007-09-11 13:57:00
<%MaxPerPage=8 ’定义页面最大的记录数为8<br>
if not isempty(request("page")) then <br>
currentPage=cint(request("page")) ’currentpage我们作为当前页面的变量,获得当前页的数值<br>
else<br>
currentPage=1 ’如果为空就设为1<br>
end if<br>
sql="select * from article order by id desc" ’sql语句,查询article表中的所有数据<br>
Set rs= Server.CreateObject("ADODB.Recordset") <br>
rs.open sql,conn,1,1 ’执行sql语句<br>
if rs.eof and rs.bof then <br>
response.write "<p align=’center’> 还 没 有 任 何 文 章</p>" <br>
else <br>
totalPut=rs.recordcount ’把查询到文章总数的值付给totalput变量(设置第一页)<br>
if currentpage<1 then ’如果小于1<br>
currentpage=1 <br>
end if <br>
if (currentpage-1)*MaxPerPage>totalput then ’设置最后一页,如果有溢出,计算页值<br>
if (totalPut mod MaxPerPage)=0 then <br>
currentpage= totalPut \ MaxPerPage <br>
else <br>
currentpage= totalPut \ MaxPerPage + 1 <br>
end if <br>
end if<br>
if currentPage=1 then ’如果是第一页<br>
showpage totalput,MaxPerPage,"index.asp" ’执行showpage函数,显示分页<br>
showContent ’执行showContent函数,显示内容<br>
showpage totalput,MaxPerPage,"index.asp" ’执行showpage函数,显示分页<br>
else ’如果不是<br>
if (currentPage-1)*MaxPerPage<totalPut then ’当前页*页面最大的记录数是否大于实际总记录数<br>
rs.move (currentPage-1)*MaxPerPage ’把记录指针移到当前页的开头<br>
dim bookmark <br>
bookmark=rs.bookmark <br>
showpage totalput,MaxPerPage,"index.asp" <br>
showContent <br>
showpage totalput,MaxPerPage,"index.asp" <br>
else <br>
currentPage=1 <br>
showpage totalput,MaxPerPage,"index.asp" <br>
showContent <br>
showpage totalput,MaxPerPage,"index.asp" <br>
end if <br>
end if <br>
rs.close <br>
end if <br>
set rs=nothing <br>
%></p>
<p><%function showpage(totalnumber,maxperpage,filename) <br>
<br>
dim n <br>
if totalnumber mod maxperpage=0 then <br>
n= totalnumber \ maxperpage <br>
else <br>
n= totalnumber \ maxperpage+1 <br>
end if <br>
response.write "<form method=Post action="&filename&"?typeid="&typeid&">" <br>
response.write "<p align=’center’>>>分页 " <br>
if CurrentPage<2 then <br>
response.write "<font color=’999966’>首页 上一页</font> " <br>
else <br>
response.write "<a href="&filename&"?typeid="&typeid&"&page=1&>首页</a> " <br>
response.write "<a
href="&filename&"?typeid="&typeid&"&page="&CurrentPage-1&">上一页</a> " <br>
end if <br>
if n-currentpage<1 then <br>
response.write "<font color=’999966’>下一页 尾页</font>" <br>
else <br>
response.write "<a href="&filename&"?typeid="&typeid&"&page="&(CurrentPage+1)
<br>
response.write ">下一页</a> <a
href="&filename&"?typeid="&typeid&"&page="&n&">尾页</a>" <br>
end if <br>
response.write " 页次:<strong><font
color=red>"&CurrentPage&"</font>/"&n&"</strong>页 " <br>
response.write " 共<b>"&totalnumber&"</b>个flash<b>"&maxperpage&"</b>个软件/页 "
<br>
response.write " 转到:<input type=’text’ name=’page’ size=4 maxlength=10
class=smallInput value="¤tpage&">" <br>
response.write "<input class=buttonface type=’submit’ value=’ 确定 ’
name=’cndok’></span></p></form>" <br>
end function %></p>
标签:分页,asp
0
投稿
猜你喜欢
利用Tkinter(python3.6)实现一个简单计算器
2022-07-16 10:42:30
免费手机号码归属地API查询接口和PHP使用实例分享
2023-10-31 08:06:37
golang时间及时间戳的获取转换
2024-05-05 09:26:27
语义化的HTML与搜索引擎优化(如何编写纯语义的HTML进行搜索引擎优化)
2009-12-28 12:42:00
Go语言提升开发效率的语法糖技巧分享
2024-05-21 10:22:39
解决antd Form 表单校验方法无响应的问题
2024-05-28 16:00:23
Python入门教程(三十)Python的PIP
2022-03-08 02:32:51
mysql 通配符(sql 高级过滤)
2024-01-24 17:15:39
python实现处理Excel表格超详细系列
2021-06-22 13:34:36
浅谈mysql数据库中的using的用法
2024-01-28 17:33:49
matplotlib绘制多个子图(subplot)的方法
2023-01-17 08:27:45
python 破解加密zip文件的密码
2021-01-10 19:59:39
基于循环神经网络(RNN)的古诗生成器
2023-04-29 13:28:06
Python print函数:如何将对象打印输出
2023-03-26 23:07:16
python中eval与int的区别浅析
2023-06-24 00:21:08
Python3 适合初学者学习的银行账户登录系统实例
2021-06-16 05:09:22
opencv+python识别七段数码显示器的数字(数字识别)
2022-03-03 00:01:51
10点优化sql数据库技巧
2008-06-09 15:00:00
matplotlib.subplot()画子图并共享y坐标轴的方法
2023-03-27 12:26:10
perl 采集入库脚本分享
2023-09-13 08:45:40