ASP循环数组元素出错

keywArr=split(keyw,",")fori=0toubound(keywArr)tit=keywArr(i)'xx=conn.execute("selecti... keywArr=split(keyw,",")
for i=0 to ubound(keywArr)
tit=keywArr(i)
'xx=conn.execute("select id,tit from tags where tit='"&tit&"'")(0)
readList=readList&"<a href=search-"&xx&".html>"&tit&"</a> | "
next
这段代码不知道哪里错了,请达人帮我。其中注释掉的部分删除后正常,但我需要那个id故不能删除。另外,如果修改成
xx=conn.execute("select id,tit from tags")(0)
xx=conn.execute("select id,tit from tags where id=1")(0)
xx=conn.execute("select id,tit from tags where tit='PS'")(0)等都是正常的。且这个变量tit也是真实有效的(有输出文字部分)。加cStr也无效………………

下面这个是不是也是相同原因造成?http://zhidao.baidu.com/question/301414114.html
上面打错了,for i=0 to ubound(keywArr)-1
展开
 我来答
liuyanbing36
2011-08-06 · TA获得超过215个赞
知道小有建树答主
回答量:297
采纳率:0%
帮助的人:145万
展开全部
这是我的测试代码
你看看
<!--#include file="conn.asp" -->
<%
on error resume next
keyw = "腾讯,新浪,百度,人人"
keywArr=split(keyw,",")
for i=0 to ubound(keywArr)
tit=keywArr(i)
xx=conn.execute("select NewsUrl,Title from News where Title='"&tit&"'")(0)
if err=0 then
readList=readList&"<a href="&xx&">"&tit&"</a> | "
end if

next
response.Write(readlist)
conn.close
set conn = nothing
%>
你错在当tit在数据库中不存在时读不出数据的,就会出错,所以要加上on error resume next并且捕获错误,然后再输出 ,不出错的情况下error=0
苏州老三石
2011-08-05 · TA获得超过1150个赞
知道小有建树答主
回答量:1300
采纳率:33%
帮助的人:937万
展开全部
改为:
xx=conn.execute("select id,tit from tags where tit="&tit&")(0)
另外,用split函数时,数组要定义成动态数组
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
老刀正能量
2011-08-06 · TA获得超过2011个赞
知道大有可为答主
回答量:1487
采纳率:0%
帮助的人:1536万
展开全部
keywArr=split(keyw,",")
for i=0 to ubound(keywArr)
tit=keywArr(i)
xx=conn.execute("select top 1 id,tit from tags where tit='"&tit&"'")(0)
readList=readList&"<a href=search-"&xx&".html>"&tit&"</a> | "
next
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式