How do i modify a Session array using JScript
For e.g., i want the Session("users") to store the names of 0 to 100 users at a given time. So
Session("users")=new Array()
for(i=0;i<n;i++)
Session("users")[i]=....
or
var us=new Array()
for(i=0;i<n;i++)
us[i]=...
Session("users")=us
Both give errors such as a session variable cannot be use with an intrinsic object etc.
Are there any errors here or do we have to include something for these to work properly.
I use PWS on my Win98 system.
I am desperate. Please do reply quickly.
Loads of thanks in advance.
Deepak
deepak-p@eth.net