语法错误 (操作符丢失) 在查询表达式 ''n_id'=' 中。

代码如下:<%id=request("newsid")isnum(id)sql="select*fromt_newswhere'n_id'="&id&""Setrst=S... 代码如下:
<%
id=request("newsid")
isnum(id)
sql="select * from t_news where 'n_id'="& id &""
Set rst = Server.CreateObject("ADODB.Recordset")
rst.open sql,nconn,1,1
if rst.eof and rst.bof then
response.Write(" ")
response.End()
end if
%>
因为我对代码不是很熟悉,请大家回答的时候 把您想要告诉我的正确代码 发布到下面。谢谢啦

代码拷贝进去出现这样的错误。网址是:http://www.szmt-health.com/DisNews.asp 打开就可以看到 这个是什么原因啊?
展开
 我来答
supercomputer
2008-12-11 · TA获得超过342个赞
知道小有建树答主
回答量:309
采纳率:100%
帮助的人:412万
展开全部
id=request("newsid")

这里没有获取到值,也就是你的id为空,你可以输出一下试试
response.write "参数为:" & id
response.end

你的程序应该改进一下
<%
id=request("newsid")
if trim(id)="" then
response.write "没能获取到参数newsid"
response.end
else
if not isnum(id) then
response.write "错误,参数不是数字"
response.end
end if
end if

sql="select * from t_news where n_id="&id
Set rst = Server.CreateObject("ADODB.Recordset")
rst.open sql,nconn,1,1
if rst.eof and rst.bof then
response.Write(" 没有找到相关记录")
response.End()
end if
%>
上面改进后的已经是正确的了,具体参数形式是
浏览器地址应该为这种形式:
你的页面.asp?newsid=数字
比如:showNews.aspx?newsid=10
如果后面没有数字,那么,你看看你的链接是不是做错了,有数字才能获取到值,才能传递给Sql语句正确的值。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式