Reputation: 93
I am storing login user information into session at login time with below code :
Session["LoginUserId"] = txtUserName.Text;
When I am running an application in google chrome my session will be automatically null after a few minutes, but for Mozila Firefox and internet explorer it is working Fine.
And I have set expire time for seesionState but it is also not working.
So, Please suggest me what can I do?
Upvotes: 1
Views: 2721
Reputation: 818
Store session table instead of browser Session and check session and expired time every time of login and user activity.
You can manage session by increase logout/expire time, it will help you to increase session time.
Upvotes: 1