mattboy_slim
10-02-2009, 08:28 PM
I have a session variable (session("sess_categories")) that has a value of the following:
6, 16, 3, 7, 4, 5
I want to write out each individual item of the "array" like such:
For Each item In session("sess_categories")
response.write(item & "<br/>")
next
However, when i do this, I get the followingn error:
Microsoft VBScript runtime error '800a01c3'
Object not a collection
Does anybody have any suggestions?
Thanks in advance,
Matt
6, 16, 3, 7, 4, 5
I want to write out each individual item of the "array" like such:
For Each item In session("sess_categories")
response.write(item & "<br/>")
next
However, when i do this, I get the followingn error:
Microsoft VBScript runtime error '800a01c3'
Object not a collection
Does anybody have any suggestions?
Thanks in advance,
Matt