1) You could use the Session object to store the array. Then read the
array on the other page.
2) Serialize the array and send it using the querystring.
What happens if the second page is in a new browser window? Does that create a new session? Just
wondering, 'cause I need to pass an array to a second page in a new browser window.
Scratch that. I just found out that opening a new window from another window
uses the same session, so a session variable to hold the array works fine.