| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 661 人关注过本帖
标题:[求助]这段分页到底哪错了 重新编辑过了
只看楼主 加入收藏
njzk
Rank: 1
等 级:新手上路
帖 子:19
专家分:0
注 册:2006-7-7
收藏
 问题点数:0 回复次数:13 
[求助]这段分页到底哪错了 重新编辑过了

<%
'定义分页显示的变量
dim totalcs,Currentpage,totalpages,i
neirong=trim(request("neirong"))
fangshi=request("fangshi")
....................................................................
Set rs= Server.CreateObject("ADODB.Recordset")
rs.open sql,conn,1,1
'统计记录数
totalcs=rs.recordcount
if rs.bof and rs.eof then
%>
<script language="JavaScript">
alert("检索不到,请确定重新搜索!");
location.href = "right.asp";
</script>
<%
else
rs.movefirst
if trim(request("page"))<>"" then
currentpage=clng(request("page"))
if currentpage>rs.pagecount then
currentpage=rs.pagecount
end if
else
currentpage=1
end if
if currentpage<>1 then
if (currentpage-1)*20<totalcs then
rs.move(currentpage-1)*20
dim bookmark
bookmark=rs.bookmark
end if
end if
if (totalcs mod 10)=0 then
totalpages=totalcs\10
else
totalpages=totalcs\10+1
end if
i=0
%>

<%
do while not rs.eof and i<10
%>


............................................................

<%
i=i+1
rs.movenext
loop
end if
%>

<img height=14 width=14 align=absMiddle src="../南京便民房屋/images/cha.gif">&nbsp;共搜索到<font color="red">[<%=totalcs%>]</font>条记录&nbsp;&nbsp;分<font color="red">[<%=totalpages%>]</font>页&nbsp;&nbsp;&nbsp;&nbsp;
<IMG height=11 src="../南京便民房屋/images/lt.gif" width=11 align=absMiddle>

<%
if CurrentPage<2 then
response.write "<font color='999966'>首页 上一页</font> "
else
response.write "<a href=SearchResult.asp?page=1>首页</a> "
response.write "<a href=SearchResult.asp?page="&CurrentPage-1&">上一页</a> "
end if
if totalpages-currentpage<1 then
response.write "<font color='999966'>下一页 尾页</font>"
else
response.write "<a href=SearchResult.asp?page="&CurrentPage+1&""
response.write ">下一页</a> <a href=SearchResult.asp?page="&totalpages&">尾页</a>"
end if
%>

[此贴子已经被作者于2006-7-11 9:10:26编辑过]

搜索更多相关主题的帖子: class 编辑 request 
2006-07-07 15:36
乱弹琴
Rank: 1
等 级:新手上路
威 望:1
帖 子:1665
专家分:0
注 册:2006-3-7
收藏
得分:0 
不晓得的了

男人的謊言可以騙女人的壹夜! 女人的謊言可以騙男人的壹生!
2006-07-07 16:03
njzk
Rank: 1
等 级:新手上路
帖 子:19
专家分:0
注 册:2006-7-7
收藏
得分:0 

谢谢你支持

2006-07-07 16:17
hangxj
Rank: 6Rank: 6
等 级:贵宾
威 望:29
帖 子:2045
专家分:0
注 册:2006-4-10
收藏
得分:0 
把代码重新贴一下,把不是重点的用...表示就好
你现在这样的代码看得头晕

http://www./
2006-07-07 16:49
njzk
Rank: 1
等 级:新手上路
帖 子:19
专家分:0
注 册:2006-7-7
收藏
得分:0 

编辑过了帮忙看一下

2006-07-10 08:40
hangxj
Rank: 6Rank: 6
等 级:贵宾
威 望:29
帖 子:2045
专家分:0
注 册:2006-4-10
收藏
得分:0 
你的SQL语句呢?看一下?

http://www./
2006-07-10 09:19
njzk
Rank: 1
等 级:新手上路
帖 子:19
专家分:0
注 册:2006-7-7
收藏
得分:0 
[CODE]

<%
'定义分页显示的变量
dim totalcs,Currentpage,totalpages,i
neirong=trim(request("neirong"))
fangshi=request("fangshi")


if fangshi=1 then
sql="SELECT * FROM fwwxdj where x_address like '%"+cstr(neirong)+"%' ORDER BY id DESC"
else
if fangshi=2 then
sql="SELECT * FROM fwwxdj where sfgf like '%"+cstr(neirong)+"%' ORDER BY id DESC"
else
if fangshi=3 then
sql="SELECT * FROM fwwxdj where wxqk like '%"+cstr(neirong)+"%' ORDER BY id DESC"
else
if fangshi=4 then
sql="SELECT * FROM fwwxdj where wxg_name like '%"+cstr(neirong)+"%' ORDER BY id DESC"
else
if fangshi=5 then
sql="SELECT * FROM fwwxdj where yy_time like '%"+cstr(neirong)+"%' ORDER BY id DESC"
else
sql="SELECT * FROM fwwxdj where b_name like '%"+cstr(neirong)+"%' ORDER BY id DESC"
end if
end if
end if
end if
end if

Set rs= Server.CreateObject("ADODB.Recordset")
rs.open sql,conn,1,1
'统计记录数
totalcs=rs.recordcount

if rs.bof and rs.eof then
%>

[/CODE]
2006-07-10 09:51
njzk
Rank: 1
等 级:新手上路
帖 子:19
专家分:0
注 册:2006-7-7
收藏
得分:0 
就这个啊
2006-07-10 09:51
hangxj
Rank: 6Rank: 6
等 级:贵宾
威 望:29
帖 子:2045
专家分:0
注 册:2006-4-10
收藏
得分:0 
<%
if CurrentPage<2 then
response.write "<font color='999966'>首页 上一页</font> "
else
response.write "<a href=SearchResult.asp?page=1&neirong="&neirong&"&fangshi="&fangshi&">首页</a> "
response.write "<a href=SearchResult.asp?page="&CurrentPage-1&"&neirong="&neirong&"&fangshi="&fangshi&">上一页</a> "
end if
if totalpages-currentpage<1 then
response.write "<font color='999966'>下一页 尾页</font>"
else
response.write "<a href=SearchResult.asp?page="&CurrentPage+1&"&neirong="&neirong&"&fangshi="&fangshi&""
response.write ">下一页</a> <a href=SearchResult.asp?page="&totalpages&"&neirong="&neirong&"&fangshi="&fangshi&">尾页</a>"
end if
%>

试下

http://www./
2006-07-10 10:42
njzk
Rank: 1
等 级:新手上路
帖 子:19
专家分:0
注 册:2006-7-7
收藏
得分:0 

哎 一直停在第一页 点下一页 最后一页 根本没反映

2006-07-10 14:31
快速回复:[求助]这段分页到底哪错了 重新编辑过了
数据加载中...
 
   



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

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