错误类型:
ADODB.Recordset (0x800A0CC1)
在对应所需名称或序数的集合中,未找到项目。
/coplion/admin/viewuser.asp, 第 28 行(红色字为28行)
----------------------------------------------------------------------------
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%if session("admin_name")="" then response.end
set rs=server.createobject("adodb.recordset")
%>
<!--#include file="../inc/conn.asp"-->
<%
if request("action")="deluser" then
sql="select * from [user] where user_id="&request("user_id")
rs.open sql,conn,3,3
if rs.eof then
response.write"<center>"
response.write"用户不存在!"
else
rs.delete
response.write"<center>"
response.write"用户信息已删除!"
end if
else
%>
<!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><table boder=0 width="100%">
<tr><p align="center">用户:<%=rs("user_name")%>详细信息</p></tr>
<tr>
<td width="33%" bgcolor="#ffffff">用户ID号:<%=rs("user_id")%></td>
<td width="33%" bgcolor="#ffffff">用户名:<%=rs("user_name")%></td>
<td width="34%" bgcolor="#ffffff">E-mail:<%=rs("user_email")%></td>
</tr>
<tr>
<td width="33%" bgcolor="#ffffff">电话号码:<%=rs("user_tel")%></td>
<td width="33%" bgcolor="#ffffff">注册时间:<%=rs("user_regtime")%></td>
<td width="34%" bgcolor="#ffffff">注册IP:<%=rs("user_regip")%></td>
</tr>
<tr >
<td width="36%" bgcolor="#ffffff">真实姓名:<%=rs("user_namec")%></td>
<td width="64%" bgcolor="#ffffff" colspan="2">邮政编码:<%=rs("user_postcode")%></td>
</tr>
<tr>
<td width="100%" bgcolor="#ffffff" colspan="3">用户地址:<%=rs("user_adds")%></td>
</tr>
<tr>
<td width="100%" bgcolor="#ffffff" colspan="3"><p align="center"><a href="viewuser.asp?user_id=<%=rs("user_id")%>&action=deluser">删除此用户</a></p></td>
</tr>
</table>
<%
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
</body>
</html>
--------------------------------------------------------------------------------------------
user表中有字段
user_id
user_name
user_pass
.
.
.
----------------------------------
是哪里出问题?