<%

str1="hello,spell,i,love,you"

aa= split(str1,",")'这里已经生成了一个数组aa,aa的内容是从str1中以‘,’为分格出来的!


for i=0 to Ubound(aa)'开始去的各个ID,i 是下标

response.write(aa(i)&" ")


next

%>