View Single Post
Old 06-12-2002, 11:04 AM   #2 (permalink)
rdove
Masked Moderator
 
rdove's Avatar
 
Join Date: May 2002
Location: Indianapolis, IN
Posts: 260
rdove is on a distinguished road
ASP Arrays

And here is how you do it in ASP

Dim arrMyArray(2)

arrMyArray(0) = "Hello"
arrMyArray(1) = " World"

Session("arrMyArray") = arrMyArray

Add more:

Redim Perserve arrMyArray(3)

arrMyArray(2) = " !"

Session("arrMyArray") = arrMyArray
__________________
~Ryan

rdove is offline   Reply With Quote