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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top