session variables won't clear

  • Thread starter Thread starter prefersgolfing
  • Start date Start date
P

prefersgolfing

I have set up several session variables and can read/write as expected. My
problem is when I start another debug session the variables are retaining
the values from the previous debug session. I've tried the .Abandon, .Clear,
and .RemoveAll method to no avail. Thanks.
 
the Session object is used to store information needed for a particular user
session. When you start another debug session, the debug session can not
share data with previous session. It means that in the debug session, you
can't access previous session.

HTH

Elton Wang
 
Back
Top