Session Expired error

  • Thread starter Thread starter Lenny
  • Start date Start date
L

Lenny

I have application that uses session variables to preserve
data between calls
Session expiration time is set to 20 min. Sometimes my
users getting error 'Session Expired' even right after
they log in to application!
Any ideas how to get around this issue?
 
it may help to explicitly set the timeout in the page_load ispostback
portion
Session.TimeOut = 20;
 
Back
Top