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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Session arrays 1

Status
Not open for further replies.

malladisk

Programmer
Jun 14, 2001
69
US
Hi!
How do I create a session level array of a given dimension and use it in an asp page so that I can read from and write back to the array?
Thanks,
Sashi
 
dim theArray(x, y)
session("theArray") = theArray

which you can later retrieve by saying:

dim theArray(x, y)
theArray = session("theArray")

:)
Paul Prewett
penny.gif
penny.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top