I need to set a session variable to hold some information. I do not wish to use cookies.
Here is my code...
And the error message:
Obviously, I have never done this before, so I'm hoping that someone will post a little example that would work where I could later access it through the following code:
Any help would be greatly appreciated! Thanks!
Paul Prewett
Here is my code...
Code:
dim intRegion(4)
call setIntRegion(intRegion)
set Session("intRegion").value = intRegion
Code:
Microsoft VBScript runtime error '800a01a8'
Object required: 'Session(...)'
Code:
dim intRegion(4)
if isobject(session("intRegion")) then
set intRegion = session("intRegion")
end if
Paul Prewett