请高手帮忙,错误 '80040e14' 语法错误 (操作符丢失) 在查询表达式 'id=' 中
当修改新闻内容提交修改后,出现以下错误:Microsoft JET Database Engine错误
'80040e14'语法错误 (操作符丢失) 在查询表达式 'id=' 中。/admin/xiugai_news.asp,行 6
updata_news.asp内容如下:
<!--#include file="../inc/Conn.asp" -->
<!--#include file="seeion.asp" -->
<%
set rs=server.createobject("adodb.recordset")
sql="select * from news where Fid="+request.form("Id")
rs.open sql,conn,1,3
title=request.form("title")
url=request.form("url")
body=request.form("body")
img=request.form("img")
ly=request.form("ly")
zz=request.form("zz")
color=request.form("color")
ssfl=request.form("ssfl")
tuijian=request.form("tuijian")
if title="" then
response.Write("<script language=javascript>alert('新闻标题不能为空!');history.go(-1)
</script>")
response.end
end if
if body="" then
response.Write("<script language=javascript>alert('新闻内容不能为空!');history.go(-1)
</script>")
response.end
end if
rs("Ftitle")=title
rs("Furl")=url
rs("Fbody")=body
rs("Fimg")=img
rs("FSource")=ly
rs("FAuthor")=zz
rs("Fcolor")=color
rs("FClass")=ssfl
rs("FRecommended")=tuijian
rs("FBindingHtmlState")=0
rs.update
Easp.db.C(rs)
Response.Write "<script>alert('新闻修改成功,点击返回新闻管
理!');window.location.href='admin_news.asp';</script>"
%>