You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
290 B
Plaintext

<%
Dim arrColours(4)
'our array
arrColours(0) = "red"
arrColours(1) = "blue"
arrColours(2) = "green"
arrColours(3) = "orange"
'join the items using ,
Response.Write Join(arrColours, ",") & "<br>"
'join the items using /
Response.Write Join(arrColours, "/") & "<br>"
%>