リストに次の要素があるかどうかを ASP でテストするにはどうすればよいですか? 私はこのようなことをしようとしています:
a=Split("foo, boo, luu, bar", ",")
for each x in a
response.write("'" & x & "'")
if a.HasNext then
response.write(",")
end if
next
それはどのように機能しますか?
ありがとうございました!