如果列表中有下一个元素,我如何在 ASP 中测试?我正在尝试做这样的事情:
a=Split("foo, boo, luu, bar", ",")
for each x in a
response.write("'" & x & "'")
if a.HasNext then
response.write(",")
end if
next
它是如何工作的?
谢谢!
如果列表中有下一个元素,我如何在 ASP 中测试?我正在尝试做这样的事情:
a=Split("foo, boo, luu, bar", ",")
for each x in a
response.write("'" & x & "'")
if a.HasNext then
response.write(",")
end if
next
它是如何工作的?
谢谢!