asp中数组函数问题。麻烦看下

MyArry=Array("1001","1002","1003")str="1002"functioncheckarry(arry(),str)fori=lbound(... MyArry=Array("1001","1002","1003")
str="1002"
function checkarry(arry(),str)
for i=lbound(myarry) to ubound(myarry)
if myarry(i)=str then
'response.write("success")
checkarry=true
exit for
end if
Next
end function

if checkarry(MyArry(),str)=true then
response.Write("y")
else
response.Write("N")
end if

Microsoft VBScript 运行时错误 (0x800A0009)
下标越界: 'MyArry'
展开
 我来答
木木的哥哥
2007-05-24 · TA获得超过638个赞
知道小有建树答主
回答量:384
采纳率:0%
帮助的人:0
展开全部
改成这个样子就可以了:
<%
MyArry=Array("1001","1002","1003")
str="1002"
function checkarry(arry,str)
for i=lbound(arry) to ubound(arry)
if arry(i)=str then
'response.write("success")
checkarry=true
exit for
end if
Next
end function

if checkarry(MyArry,str)=true then
response.Write("y")
else
response.Write("N")
end if
%>
百度网友c67c98046
2007-05-24 · TA获得超过517个赞
知道小有建树答主
回答量:900
采纳率:0%
帮助的人:0
展开全部
楼上正解。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式