比如说 后台编辑删除文件的代码可是总是提示"rs.open sql,conn,1,3"出错
请问 是什么原因???
错误信息:
Microsoft VBScript 编译器错误 错误 '800a03f6'
缺少 'End'
/iisHelp/common/500-100.asp,行242
Microsoft VBScript 运行时错误 错误 '800a01a8'
缺少对象: ''
/win/admin/admin_show.asp,行13
代码:
<%
id = request.QueryString("id")
sql = "select * from news where id=" &id
rs.open sql,conn,1,1
response.Write(rs("title"))
response.Write("<br>")
response.Write(rs("neirong"))
rs.close
%>
错误信息:
Microsoft VBScript 编译器错误 错误 '800a03f6'
缺少 'End'
/iisHelp/common/500-100.asp,行242
Microsoft VBScript 运行时错误 错误 '800a01a8'
缺少对象: ''
/win/admin/admin_show.asp,行13
代码:
<%
id = request.QueryString("id")
sql = "select * from news where id=" &id
rs.open sql,conn,1,1
response.Write(rs("title"))
response.Write("<br>")
response.Write(rs("neirong"))
rs.close
%>
这段代码要实现的是在后台显示选中的文章的内容
<!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>
<%
id = request.QueryString("id")
sql = "select * from news where id=" &id
style = request.QueryString("style")
rs.open sql,conn,1,3
title=rs("title")
neirong=rs("neirong")
response.Write(title)
response.Write("<br>")
response.Write(neirong)
rs.close
%>
</body>
这样也不可以,还是出现上面的错误
[此贴子已经被阳光白雪于2007-6-27 16:44:46编辑过]
代码:
<body>
<%
10 id = request.QueryString("id")
11 sql = "select * from news where id="& id
12 rs.open sql,conn,1,1
13 response.Write(rs("title"))
14 response.Write("<br>")
15 response.Write(rs("concent"))
16 conn.execute(sql)
17 rs.close
%>
</body>
错误信息:
Microsoft VBScript 编译器错误 错误 '800a03f6'
缺少 'End'
/iisHelp/common/500-100.asp,行242
Microsoft JET Database Engine 错误 '80040e14'
语法错误 (操作符丢失) 在查询表达式 'id=' 中。
/win/admin/admin_show.asp,行14
已经 试过更换表达式了可是还是不可以正常运行
而且就是上面的代码别人的叶面就可以实现
[此贴子已经被作者于2007-6-27 15:13:55编辑过]