ADODB.Recordset (0x800A0CC1) 在对应所需名称或序数的集合中,未找到项目。是哪里错了呢
下面是具体的代码,拜托各位了,,<!--#includefile="checkadmin.asp"--><%'连接数据库database="Database/vote.m...
下面是具体的代码,拜托各位了,,
<!--#include file="checkadmin.asp"-->
<%
'连接数据库
database="Database/vote.mdb"
strconn="provider=Microsoft.jet.oledb.4.0;data source="&server.mappath(database)
Set conn=server.CreateObject("ADODB.Connection")
conn.open strconn
'关闭数据库
Sub closeDB()
If IsObject(conn) Then
Set rs=Nothing
conn.close
Set conn=Nothing
End If
End sub
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>用户管理</title>
</head>
<body>
<h2 align="center">用户列表</h2>
<table width="70%" border="0" align="center">
<tr bgcolor="#FF6600">
<td align="center" width="20%">用户帐号</td>
<td align="center" width="20%">用户密码</td>
<td align="center" width="20%">用户简介</td>
<td align="center" width="20%">操作</td>
</tr>
<%
set rs=server.createobject("adodb.recordset")
rs.open "select * from [user] order by userID",conn,1,3
rCount=rs.recordcount
do while not rs.eof
%>
<tr>
<td><%=rs("username")%></td>
<td><%=rs("userpassword")%></td>
<td><%=rs("usernote")%></td>
<td>
<a href="userEdit.asp? userID=<%=rs(" userID")%>"
onclick="return newwin(this.href)">修改</a> |
<%
if rs("username")<> "admin" then
%>
<a href="userDel.asp? userID=<%=rs(" userID")%>"
onclick="return newwin(this.href)">删除</a>
<% end if %>
</td>
</tr>
<%
rs.movenext
loop '结束循环
if rCount=0 then
response.write("当前没有用户数据")
else
response.write("当前共有<font color=red>"&trim(rCount)&"</font>条用户记录")
end if
closeDB()
%>
</table>
<p align="center"> <a href="admin.asp">返回</a></p>
</body>
</html> 展开
<!--#include file="checkadmin.asp"-->
<%
'连接数据库
database="Database/vote.mdb"
strconn="provider=Microsoft.jet.oledb.4.0;data source="&server.mappath(database)
Set conn=server.CreateObject("ADODB.Connection")
conn.open strconn
'关闭数据库
Sub closeDB()
If IsObject(conn) Then
Set rs=Nothing
conn.close
Set conn=Nothing
End If
End sub
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>用户管理</title>
</head>
<body>
<h2 align="center">用户列表</h2>
<table width="70%" border="0" align="center">
<tr bgcolor="#FF6600">
<td align="center" width="20%">用户帐号</td>
<td align="center" width="20%">用户密码</td>
<td align="center" width="20%">用户简介</td>
<td align="center" width="20%">操作</td>
</tr>
<%
set rs=server.createobject("adodb.recordset")
rs.open "select * from [user] order by userID",conn,1,3
rCount=rs.recordcount
do while not rs.eof
%>
<tr>
<td><%=rs("username")%></td>
<td><%=rs("userpassword")%></td>
<td><%=rs("usernote")%></td>
<td>
<a href="userEdit.asp? userID=<%=rs(" userID")%>"
onclick="return newwin(this.href)">修改</a> |
<%
if rs("username")<> "admin" then
%>
<a href="userDel.asp? userID=<%=rs(" userID")%>"
onclick="return newwin(this.href)">删除</a>
<% end if %>
</td>
</tr>
<%
rs.movenext
loop '结束循环
if rCount=0 then
response.write("当前没有用户数据")
else
response.write("当前共有<font color=red>"&trim(rCount)&"</font>条用户记录")
end if
closeDB()
%>
</table>
<p align="center"> <a href="admin.asp">返回</a></p>
</body>
</html> 展开
3个回答
展开全部
当然不对,www.15tf.com
认为:在sql里你怎么写自己的记录值rs,你这个sortpath如果是文本格式的字段名
Set
rs
=
server.CreateObject("adodb.recordset")
sql="select
top
2
*
from
Products
where
SortPath='"&session("sortID")&"'
and
ID
<>
"&request.QueryString("ID")
认为:在sql里你怎么写自己的记录值rs,你这个sortpath如果是文本格式的字段名
Set
rs
=
server.CreateObject("adodb.recordset")
sql="select
top
2
*
from
Products
where
SortPath='"&session("sortID")&"'
and
ID
<>
"&request.QueryString("ID")
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
错误提示已经很清楚了,检查你表里的字段名和页面输出的字段名是不是一致的
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
html>
<head>
<meta
http-equiv="Content-Type"
content="text/html;
charset=gb2312"
/>
<title>注册结果</title>
<style
type="text/css">
<!-
body
{
margin-top:
0px;
margin-bottom:
0px;
background-image:
url();
background-repeat:
no-repeat;
}
-->
</style>
</head>
<body>
<table
width="800"
border="0"
align="center"
cellspacing="0">
<tr>
<td
width
<head>
<meta
http-equiv="Content-Type"
content="text/html;
charset=gb2312"
/>
<title>注册结果</title>
<style
type="text/css">
<!-
body
{
margin-top:
0px;
margin-bottom:
0px;
background-image:
url();
background-repeat:
no-repeat;
}
-->
</style>
</head>
<body>
<table
width="800"
border="0"
align="center"
cellspacing="0">
<tr>
<td
width
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询