设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 89|回复: 8
打印 上一主题 下一主题

请教高手:搜索结果分页的问题

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-6 23:30:36 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
现有a,b,c两个页面,data数据库,在a页面的文本框中输入关键字后提交经过b页面跳转到c页面,在c页面中分页显示搜索数据库的结果,点下一页的时候显示的是空记录,请问高手们怎么解决这些问题呢?我刚学asp希望大家帮助一下,贴个完整源码
2#
发表于 2010-1-6 23:30:39 | 只看该作者
以下是很基础的分页代码
lz只要获取一下参数并适当的改一下SQL语句
还有在上一页 ,下一页的链接上传递一下你的搜索关键字就好了


=========================Page.asp(RS分页代码)==================================================
<body>
<%
Dim rs,sql,i,paper,pages
Set rs = Server.CreateObject("ADODB.RECORDSET")
sql = "select * from userinfo order by id asc"
rs.Open sql,conn,1,1
%>
<table width="450" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="85" align="center">id</td>
<td width="161" align="center">username</td>
<td width="204" align="center">password</td>
</tr>
<%
If rs.Eof Then
Response.Write("<tr><td colspan='3' align='center'>暂时没有记录!</td></tr>")
Else
rs.PageSize=10
paper = rs.PageCount
pages = Trim(Request.QueryString("page"))
If pages = "" Then pages = 1
If Not IsNumeric(pages) or Instr(pages,"-")<>0 or Instr(pages,".")<>0 Then
Response.Write("<script>alert('非法操作!');history.back()</script>")
Response.End()
End If
pages = Int(pages)
If pages < 1 Then pages = 1
If pages > paper Then pages = paper
rs.Absolutepage = pages
For i = 1 To rs.PageSize
%>
<tr>
<td align="center"><%=rs("id")%></td>
<td align="center"><%=rs("username")%></td>
<td align="center"><%=rs("password")%></td>
</tr>
<%
rs.movenext
If rs.eof Then Exit For
Next
%>
<tr>
<td colspan="3" align="left">
共有<font color="red"><%=rs.RecordCount%></font>条记录,
共有<font color="red"><%=paper%></font>页,
当前第<font color="red"><%=pages%></font>页,
<a href="?page=1">首页</a>&nbsp;
<a href="?page=<%=pages-1%>">上一页</a>&nbsp;
<a href="?page=<%=pages+1%>">下一页</a>&nbsp;
<a href="?page=<%=paper%>">尾页</a>
</td>
</tr>
<%
Rs.Close
Set Rs = Nothing
End If
%>
</table>
</body>
回复 支持 反对

使用道具 举报

3#
发表于 2010-1-6 23:30:42 | 只看该作者
经过b页面跳转时,表单变量如何保存呢
回复 支持 反对

使用道具 举报

4#
发表于 2010-1-6 23:30:45 | 只看该作者
不知你的问题解决了没
回复 支持 反对

使用道具 举报

5#
发表于 2010-1-6 23:30:48 | 只看该作者
你可以带着参数跳转

Response.Redirect("a.asp?a=1&b=2&c=3")
回复 支持 反对

使用道具 举报

6#
发表于 2010-1-6 23:30:51 | 只看该作者
解决了吗?

把很低调版主发的认真看下.相信应该行
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 14:23 , Processed in 0.138241 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表