Click to See Complete Forum and Search --> : Data Lost?


k_o_g
08-10-2004, 03:14 AM
Dear All,

I just came across a strange problem and May all of you can help me to clarify it.
I am developing an web application that use cross-croweser scripting with javascript. The main window will constantly update the data of the pop-up window by calling a function and pass few object to it.(the content of the object is simply make from a random function)
I found that when I leave the webpage for about 15 min, some of he object become null, but after refresh, the object exist again.

Is it deal with the session or anything else, any comment welcome, thx!

BillyRay
08-10-2004, 03:25 AM
Is it deal with the session or anything else
You're probably in a better position to tell us, given that we know nothing about your page or its content or structure.

It could well be that the session is timing out, although this would be a server-side issue, and not JS related. Maybe check your session timeout values server-side (if you need help with this, I'd check in the forum for your particular web server).

Hope this helps,
Dan

k_o_g
08-10-2004, 03:45 AM
Thx!!

I have try to lengthen the expire time of the session and the situation seems improved.(the default setting is 15 min)

I will keep tracking about it.