Session VAriables

  • Thread starter Thread starter brian
  • Start date Start date
B

brian

If I declare a session variable: session("Link") and
later code: session("Link") = Nothing, will that free up
the space taken up by the variable? Or do you have to
abanden the session?

Thanks
 
Session.Remove("Link")

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
hi,
there is also SEssion.Clear()
will clear the values of that keyname.
Session.abandon is the best bet... though
 

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

Back
Top