preventing session variables from going null

J

javelin

In ASP classic pages, I want to know if it's possible to prevent
session variables from becoming zero length strings? I have tried
setting the Session.Timeout to a large value, but alwas, after 20
minutes, my session variable times out. I also tried setting the
session timeout in IIS manager to a high value, but this did no good
either.

I just want to allow one particular session variable to last a long
time. Any other suggestions? \

Thanks.
 
M

Mike Brind

javelin said:
In ASP classic pages, I want to know if it's possible to prevent
session variables from becoming zero length strings? I have tried
setting the Session.Timeout to a large value, but alwas, after 20
minutes, my session variable times out. I also tried setting the
session timeout in IIS manager to a high value, but this did no good
either.

I just want to allow one particular session variable to last a long
time. Any other suggestions? \

Session Variables live as long as the session (unless you explicitly
terminate them before that). If you want a value to persist beyond the life
of a session, then by definition, this can't be done using a session
variable. You will need to use a different mechanism - database/text
file/application variable...
 
E

Evertjan.

Mike Brind wrote on 18 dec 2006 in
microsoft.public.inetserver.asp.general:
Session Variables live as long as the session (unless you explicitly
terminate them before that). If you want a value to persist beyond
the life of a session, then by definition, this can't be done using a
session variable. You will need to use a different mechanism -
database/text file/application variable...

In other words:

Session variables never time out,
they just fade away ...

.... when the session ends.



Preventing the session from ending is all that is required.
 
A

Anthony Jones

javelin said:
In ASP classic pages, I want to know if it's possible to prevent
session variables from becoming zero length strings? I have tried
setting the Session.Timeout to a large value, but alwas, after 20
minutes, my session variable times out. I also tried setting the
session timeout in IIS manager to a high value, but this did no good
either.

I just want to allow one particular session variable to last a long
time. Any other suggestions? \

That's strange. Session variables should survive for at least the period
specified as the session timeout in IIS Manager.

Is this Win2K3 IIS6? If so do you have periodic recycling enabled on the
application pool your ASP app belongs to?

You are aware that if you close your browser you are no longer able to
access the session, right?
 
J

javelin

I'm aware of how session variables work, but can't figure out why the
session timeout settings are being ignored. I can't find anything in
the code (300+ pages worth) that would explain why this particular
variable gets set to "", but there is got that checks if the value is
set to "", and if so, it closes the browser.

I know the server is Windows Server 2003, SP1, if that helps.

Thanks.
 
A

Anthony Jones

javelin said:
I'm aware of how session variables work, but can't figure out why the
session timeout settings are being ignored. I can't find anything in
the code (300+ pages worth) that would explain why this particular
variable gets set to ""

Is it really getting set to "" or is in fact Empty (test using IsEmpty
function)?
'why this particular variable gets set to ""' suggest that you have other
session variables that survive longer, is that so?
 

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

Members online

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,073
Latest member
DarinCeden

Latest Threads

Top