N
Not Me
Hi,
I have a set of pages that use forms authentication for access. There
are times when one of the session objects I'm using appears to
disappear. The session is not timing out, however. (if I go to a page
that doesn't use that specific object it works fine and I'm not
redirected to the login page)
Apologies if I'm using the incorrect terminology.. the session object
I'm using is a class of my own, which features several private variables
and get/set methods.
I create the object in the login page:
dim mySessionObject as new SessionObject()
session("mySessionObject") = mySessionObject
Then use the gets/sets at various stages of the application.
Could it be that the object is being 'cleaned up' at arbitrary times due
to it not being accessed? or should it stay where it is once it's been
assigned to the session (at least until the session expires)?
Ta for any help,
Chris
I have a set of pages that use forms authentication for access. There
are times when one of the session objects I'm using appears to
disappear. The session is not timing out, however. (if I go to a page
that doesn't use that specific object it works fine and I'm not
redirected to the login page)
Apologies if I'm using the incorrect terminology.. the session object
I'm using is a class of my own, which features several private variables
and get/set methods.
I create the object in the login page:
dim mySessionObject as new SessionObject()
session("mySessionObject") = mySessionObject
Then use the gets/sets at various stages of the application.
Could it be that the object is being 'cleaned up' at arbitrary times due
to it not being accessed? or should it stay where it is once it's been
assigned to the session (at least until the session expires)?
Ta for any help,
Chris