|
-
Apr 21st, 2001, 03:56 PM
#1
Thread Starter
Hyperactive Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|