codice:
<%
str = "1,2,3,4,5,6,7,8,9,0,10,11,12"
arr_str = split(str, ",")
for xx = 0 to UBound(arr_str)
response.write arr_str(xx) &"
"
next
%>
Roby