Oct 1, 2003 #1 sefafo Programmer Joined Aug 28, 2003 Messages 36 Location CO Hello.!!! It's possible to store an array in a session variable?? if so, how?? Thanks a lot
Oct 1, 2003 #2 100dtl Programmer Joined Aug 18, 2003 Messages 313 Location GB Session array Upvote 0 Downvote
Oct 1, 2003 #3 SarkMan Programmer Joined Apr 1, 2002 Messages 182 Location 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 1, 2003 Thread starter #4 sefafo Programmer Joined Aug 28, 2003 Messages 36 Location CO Thank you!!!! Upvote 0 Downvote
Oct 7, 2003 #5 100dtl Programmer Joined Aug 18, 2003 Messages 313 Location GB Mark it as useful if its good reading, it helps folk to solve problems Upvote 0 Downvote