| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 815 人关注过本帖
标题:[求助]请教一个ASP搜索分页的问题
取消只看楼主 加入收藏
515151
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2005-9-28
收藏
 问题点数:0 回复次数:1 
[求助]请教一个ASP搜索分页的问题

我下载了一个ASP购物程序,里面的搜索代码好象有问题: 例如,我搜索一个关键词后,出现25个结果。本来程序中设置的是每页显示10个结果,按理说应该是在第一页显示10个,第二页显示10个,第三页显示5个。但是出现的情况是在第一页中显示出了全部25个结果,而页面底下仍然显示有"第1页/共3页",点击下一页,出现15个结果。 归纳一下就是,这个代码把所有的搜索结果都在第一页里显示出来,但却仍然能分页,这是怎么回事?求助……… 以下是该程序相关搜索代码,请大家看看错在哪里? 搜索结果:-->><br> <div align="center"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"> <div align="center"> <table cellspacing=1 cellpadding=0 width="98%" border=0> <tbody> <% dim totalPut dim CurrentPage dim TotalPages keyword=request("keyword") if keyword="" then errmsg=errmsg+"<br>"+"请输入关键字。" response.write "<font color=red>对不起,请输入关键字</font>" response.end founderr=true else keyword=replace(replace(replace(replace(keyword,"'","‘"),"<","&lt;"),">","&gt;")," ","&nbsp;") findword="hw_name like '%"&keyword&"%' " end if %> <% sql="select * from hw where "&findword&"" if zuoze<>"" then sql=sql &"and zuoze like '%"&zuoze&"%'" if lei<>"" then sql=sql &"and lei like '%"&lei&"%'" page=request.querystring("page") if page="" then page=1 if not(isnumeric(page)) then page=1 if page<1 then page=1 page=int(page) rs.open sql,conn,1,1 if rs.eof and rs.bof then response.write "<p align='center'>没有或没有找到任何产品</p>" else rs.pagesize=10 totalrec=rs.recordcount totalpage=rs.pagecount if page>totalpage then page=totalpage rs.absolutepage=page for i=1 to pageCount if recordset.eof then exit for display recordset.movenext next i=0%> <tr> <% do while not rs.eof i=i+1 hw_id=rs("hw_id")%> <td width="245" bgcolor="#FFFFFF"> <table border="0" width=245 cellspacing="1"> <tr> <td width=80 bgcolor="#FFFFFF" valign="top" align="center"><A href="<%=rs("hw_pic")%>"><img border="0" src="<%=rs("hw_pic")%>" width=80 height=80

alt=".::商品图片::."></A></td> <td width=165 bgcolor="#FFFFFF" valign="top" align="left">商品名称:<%=rs("hw_name")%><br> 上架时间:<%=rs("hw_date")%> <br>商品价格:<font color=red><%=rs("hw_cash")%></font>元 <%if session("user_type")="批发" then response.write "(批发价:" & rs("daili") & "元)"%> <%if session("user_type")="代理" then response.write "(代理价:" & rs("daili") & "元)"%><br> 浏览次数:<%=rs("hw_views")%><br> 成交次数:<%=rs("hw_buys")%><br> <br> <p align="center"><a title="点击查看具体信息" href="javascript:openScript('views.asp?hw_id=<%=hw_id%>',550,500)">详细资料</a> <A href="favadd.asp?hw_id=<%=hw_id%>">加入收藏</a><br> <a href='javascript:openbag(<%=hw_id%>)'><img border="0" src="images/shop.gif" alt="─┼收 藏┼─"></a>  </td> </tr> </table> </td> <%if (i mod 2)= 0 then response.write "</tr><tr>" end if%>

<% rs.movenext loop end if rs.close %> </tr> <tr> <td width=590 colspan=2 bgcolor=#fff9ff> <p align="left">共<font color=red><%=totalpage%></font>页 第<%=page%>页 <font color=666666><%if page-1>0 then%><a href="querygoods.asp?page=<%=page-1%>&keyword=<%=keyword%>&company=<%=company%

>&action=title">上一页</a><%else%><font color=666666>上一页</font><%end if%> <%if page+1<=totalpage then%><a href="querygoods.asp?page=<%=page+1%

>&keyword=<%=keyword%>&company=<%=company%>&action=title">下一页</a><%else%><font color=666666>下一页</font><%end if%></font></p> </td> </tr>

</table> </div> </td> </tr> </table> </div> </td> </tr> </table> <table width="776" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td><img src="images/home_13.gif" width="776" height="11"></td> </tr> </table>

搜索更多相关主题的帖子: ASP 搜索 结果 
2005-09-28 21:45
515151
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2005-9-28
收藏
得分:0 
以下是引用rainic在2005-9-28 22:45:04的发言: do while rs.eof 改成: do while rs.eof and i<10
恩人在上,小人拜谢了! 困扰我很久的问题终于解决了……
2005-09-28 22:56
快速回复:[求助]请教一个ASP搜索分页的问题
数据加载中...
 
   



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

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