| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 385 人关注过本帖
标题:寻求给一个分页带提交跳转的 谢谢
只看楼主 加入收藏
s6gy
Rank: 1
等 级:新手上路
帖 子:330
专家分:0
注 册:2006-10-26
收藏
 问题点数:0 回复次数:1 
寻求给一个分页带提交跳转的 谢谢
给一个分页带上一页 下一页 最后一页 及 提交跳转的
代码谢谢谢谢
搜索更多相关主题的帖子: 代码 
2007-06-22 10:49
放任一切
Rank: 2
等 级:新手上路
威 望:4
帖 子:217
专家分:0
注 册:2007-3-22
收藏
得分:0 

<%
Set lendlist= Server.CreateObject("ADODB.Recordset")
sql="select * from car_lend"
lendlist.open sql,conn,1,1
lendnum=0


const MaxPerPage=20
if lendlist.eof and lendlist.bof then
%>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="2">
<tr>
<td colspan="15" align="center" class="form"><strong>暂无车辆信息!</strong></td>
</tr>
</table>
<%
response.End()
end if
lendlist.MoveFirst '注意放到前面来,否则到任何页总是在第一个记录上
lendlist.pagesize=MaxPerPage '设置每页最多显示多少条记录
If trim(Request("Page"))<>"" then '如果请求的页次不为空
CurrentPage= CLng(request("Page")) 'clng是转换成长整型数据类型,并赋值到当前页次上
If CurrentPage> lendlist.PageCount then '如果当前页次大于总页数,则将最大页次赋值到当前页次上
CurrentPage = lendlist.PageCount
End If
Else
CurrentPage= 1 '一切条件不成立,将当前页设为第一页
if session("page")<>"" then
CurrentPage=session("page")
end if
End If
totalPut=lendlist.recordcount '将总记录赋值于TOTALPUT
if CurrentPage<>1 then '如果当前页数不等于第一页
if (currentPage-1)*MaxPerPage<totalPut then '如果当前页减一乘以每页最大的记录数小于总记录的话
lendlist.move(currentPage-1)*MaxPerPage '相对当前记录数向后移动
dim bookmark '定义书签变量
bookmark=lendlist.bookmark '将当前记录的标签赋于变量BOOKMARK上
end if
end if

dim n,k
if (totalPut mod MaxPerPage)=0 then '总记录数与每页最大记录数求余的结果为零时,则N返回整数页次,否则再加一.
n= totalPut \ MaxPerPage
else
n= totalPut \ MaxPerPage + 1
end if


do while not lendlist.eof and lendnum<MaxPerPage
lendnum=lendnum+1
%>
……记录……
<%
lendlist.movenext
loop
%>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="form">
<tr>
<form method=POST action="syregister.asp" name=setPagesList>
<td align="center" valign="middle" class="text_black">
<!-- 分页显示代码块 可独立使用,注意和上面分页功能代码配使用 -->
<div align="center"><br>
<span class="text">共有<%=lendlist.recordcount%>条车辆使用记录 
<%
k=currentPage
if k<>1 then
response.write "|<b>"+"<a href='?page=1'class='text_black'>首页</a></b>| "
response.write "<b>"+"<a href='?page="&cstr(k-1)&"&px="&px&"'class='text_black'>上一页</a></b>| "
else
Response.Write "|首页|上一页|"
end if
if k<>n then
response.write "<b>"+"<a href='?page="&cstr(k+1)&"'class='text_black'>下一页</a></b>| "
response.write "<b>"+"<a href='?page="&cstr(n)&"'class='text_black'>尾页</a></b>| "
else
Response.Write "下一页|尾页|"
end if
%>
第<%=currentpage%>/<%=n%>页
<input name=page type=text class="loginfrom" value="<%= currentpage %>" size=5 maxlength=10>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></div> </td>
</form>
</tr>
</table>

2007-06-22 11:04
快速回复:寻求给一个分页带提交跳转的 谢谢
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.031330 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved