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
 
Back
Top