I am wanting to populate an array in an asp page then on submitting the form pass the array to the page which processes the form as details in ACTION=otherform.asp
well with a form, a form can have an array to one name, heres an example, when I pass multiple values using the same name for the form content.
[tt]
if not ISEmpty(Request("URLs") then
for each itm in Request("URLs"
...itm will be the string of each item
next
end if [/tt]
another way you could do it, if your ASP are all on the same server, you could session off an actual array
set Session("MyArray" = TheArray
to get back in new page
Set ThePageArray = Session("MyArray"
(it would be a good idea to make sure it's not IsEmpty())
that way on the new page, you can grab it back, using that kind of session method helps when using ActiveX dlls, and you dont want to close the DLL until the user , for example logs off.
Hope that helps. [sig]<p>Karl<br><a href=mailto:kb244@kb244.com>kb244@kb244.com</a><br><a href=
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.