Help on session ??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear all,

I have an ASP.NET 1.1 application which need to transfert a QuerryInfo
structure through pages.
At first I was using Session("Query")=Queryinfo nad then read it back from
page event of sucessives web form.

As you cannot rely on the existense of session due to time out issue, how
would you do to have this QueryInfo transfert through pages ?
 
If your objects are not related to specific sessions then I guess you can
serialize your objects and put them in sql or hard drive...otherwise you can
increase your sessions timeout to a reasonable amount of time...otherwise
you can use some tricks in javascript to force a postback of a hidden
iframe every x seconds so your sessions will never expire.
Hope that helps,
Alejandro.
 

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

Back
Top