Oct 1, 2003 #1 sefafo Programmer Aug 28, 2003 36 CO Hello.!!! It's possible to store an array in a session variable?? if so, how?? Thanks a lot
Oct 1, 2003 #3 SarkMan Programmer Apr 1, 2002 182 US Here is an example of how to use an array in a session variable dim A A = Array(10,20,30) session("myArray"=A 'Get the array from a session variable s=session("myArray" Response.Write s(0) Response.Write s(1) Response.Write s(2) Upvote 0 Downvote
Here is an example of how to use an array in a session variable dim A A = Array(10,20,30) session("myArray"=A 'Get the array from a session variable s=session("myArray" Response.Write s(0) Response.Write s(1) Response.Write s(2)
Oct 7, 2003 #5 100dtl Programmer Aug 18, 2003 313 GB Mark it as useful if its good reading, it helps folk to solve problems Upvote 0 Downvote