| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 413 人关注过本帖
标题:请教分页的一个问题!  先谢谢大家了!
只看楼主 加入收藏
piaoxue
Rank: 3Rank: 3
来 自:地球
等 级:论坛游侠
威 望:3
帖 子:606
专家分:113
注 册:2005-9-19
结帖率:100%
收藏
 问题点数:0 回复次数:2 
请教分页的一个问题!  先谢谢大家了!
以下是代码:
<!--#include file="conn.asp"-->
<%
dim page_size
dim page_no
dim page_total
dim wenjianming
set rs=server.createobject("adodb.recordset")
'sql = "select * from yao where Ys="红色""
sql="select * from yao where Ys = '红色'"
wenjianming="goso.asp"
page_size=5
if request.querystring("page_no")="" then
page_no=1
else
page_no=cint(request.querystring("page_no"))
end if
rs.pagesize=page_size
page_total=rs.pagecount
if not(rs.bof or rs.eof) then
rs.absolutepage=page_no
end if
dim i
i=page_size
response.write "共<font color=blue>" & page_total & "</font>页&nbsp;&nbsp;每页<font color=red>" & page_size & "</font>条记录&nbsp;&nbsp;当前<font color=red>" & page_no & "</font>|<font color=red>" & page_total & "</font>页&nbsp;&nbsp;"
if page_total=1 then
response.write "首页|上一页|下一页|尾页"
else
response.write "<a href=" & wenjianming & "?page_no=1&typeid="&typeid&"&ntypeid="&ntypeid&"&ys="&ys&">首页</a>|"
if page_no-1>0 then
response.write "<a href=" & wenjianming & "?page_no=" & page_no-1 & "&typeid="&typeid&"&ntypeid="&ntypeid&"&ys="&ys&">上一页</a>|"
else
response.write "上一页|"
end if
if page_no+1<=page_total then
response.write "<a href=" & wenjianming & "?page_no=" & page_no+1 & "&typeid="&typeid&"&ntypeid="&ntypeid&"&ys="&ys&">下一页</a>|"
else
response.write "下一页|"
end if
response.write "<a href=" & wenjianming & "?page_no=" & page_total & "&typeid="&typeid&"&ntypeid="&ntypeid&"&ys="&ys&">尾页</a>"
end if
%>
<table cellspacing=0 width="100%" border=1 cellpadding="1" bordercolor="#3D5FC2" align="center">
<tr bgcolor="#efefefef">
<td height="20" width="126" align="center">药品名称</td>
<td width="107" align="center">药品颜色</td>
<td height="20" width="191" align="center">产地</td>
<td width="132" align="center">特点</td>
<td height="20" width="146" align="center">价格</td>
<td height="20" width="125" align="center">使用方法</td>
<td height="20" width="146" align="center">详细介绍</td>
<td height="20" width="125" align="center">图片</td>
</tr>
<%
do while not rs.eof and i>0
i=i-1
%>
<tr>
<td height="21" width="126"><%=rs("Ym")%></td>
<td height="21" width="107"><%=rs("Ys")%></td>
<td height="21" width="191"><%=rs("Cd")%></td>
<td height="21" width="132"><%=rs("Gx")%></td>
<td height="21" width="146"><%=rs("Jg")%></td>
<td height="21" width="125"><%=rs("Ff")%></td>
<td height="21" width="146"><%=rs("Js")%></td>
<td height="21" width="125"><img src="<%=rs("LPattern")%>" width="80" height="50"></td>
</tr>
<%
rs.movenext
loop
rs.close
Set Rs=Nothing
%>
</table>
当运行的时候会显示

ADODB.Recordset 错误 '800a0e78'

对象关闭时,不允许操作。

/hao2/xianshi.asp,行 18    是什么原因呀?

2006-02-27 14:56
piaoxue
Rank: 3Rank: 3
来 自:地球
等 级:论坛游侠
威 望:3
帖 子:606
专家分:113
注 册:2005-9-19
收藏
得分:0 
问题已经解决了!   不用麻烦各位了!

我是做平面设计、网站制作、网站推广、主机域名等业务的站长。有需要的给我站内信吧。
2006-02-27 15:10
caiyakang
Rank: 2
等 级:新手上路
威 望:5
帖 子:2111
专家分:0
注 册:2005-3-24
收藏
得分:0 
你没有打开记录集
rs.open

中国人的财富网:http://www..cn/
2006-02-27 15:11
快速回复:请教分页的一个问题!  先谢谢大家了!
数据加载中...
 
   



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

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