Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Session

Status
Not open for further replies.

sefafo

Programmer
Aug 28, 2003
36
0
0
CO
Hello.!!!

It's possible to store an array in a session variable?? if so, how??

Thanks a lot
 
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)
 
Mark it as useful if its good reading, it helps folk to solve problems
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top