2-Dimensional Session Arrays

liunx

Guest
I want to write a two-dimensional array to a session array. I think I can do a one-dimensional session array but not so sure how to convert it to a two-dimensional session array. Any help would be much appreciated.You can create a multi-dimensional array.

Dim ary(3,2)
ary(row,col) = value


each Row will be like a recordset.
 
Back
Top