Hello,

How can I pass an array from one page to the next.

Eg.

In page 1 I have
<%
dim array1(100)

array1(1) = "hello"
array1(2) = "word"
%>

I now submit/post this form to page2 where I want to do something like


<%
dim array2(100)
array2 = request.form array1

response.write array2(1)
response.write array2(2)
%>

Which must results in - "helloworld".

Can it be done.

Thanks,
T