
Passing Array to Session Variable Then back to Array
In the first .asp page I'm passing an array to a session variable
-
session("security_token") = tok
-
tok being a simple array holding some string values.
In the following .asp page I try to retrieve the array from the session
variable into an array on the new page. Both arrays are simply defined as
dim tok(15) and newtok(15) respectively
-
newtok = session("security_token")
-
When doing so I get a runtime error "800a000d" - "Type mismatch".
I need to keep the values in the session variable to be accessed by .asp
pages to confirm security privileges.
Any help would be appreciated.
Kris