
July 20th, 2000, 02:11 PM
|
|
Junior Member
|
|
Join Date: Jul 2000
Location: Salem, MO, USA
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
How can I store a java array created in one function for use in other java functions?
I have tried using the session object but am unable to pull the java array back out of the session object.
I did this:
var a = new Array();
a[0] = 1;
Session("MyArray") = a;
then in other function, I do this:
b = Session("MyArray");
Which gives an error about not having an object.
|