I open an new window from a parent window. I want the values from a certain <SELECT> object in the parent page to pre-populate a <SELECT> object in the child page.
I've tried a Javascript solution but that won't work.
The objects in the child page (the <form>) "don't exist yet" when <body ... onload="initialize()"> is done.
So a session variable might be the ticket. Can an array be a session variable? The books I have on the subject don't show anything other than single-value non-typed variables. How would I declare (in Session_onStart) an array then reference it?
I've tried a Javascript solution but that won't work.

So a session variable might be the ticket. Can an array be a session variable? The books I have on the subject don't show anything other than single-value non-typed variables. How would I declare (in Session_onStart) an array then reference it?
Comment