session variables won't clear

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.
 
G

Guest

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
 

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