Session objects for variables

K

Kevin Spencer

The ASP Session object is a Collection. To add something to it, you use
VbScript like the following:

Session("WhateverYouWantToNameIt") = SomeValue

To get it, you use something like the following:

SomeValue = Session("WhateverYouWantToNameIt")

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Who is Mighty Abbott?
A twin turret scalawag.
 
Top