Click here to Skip to main content
15,893,381 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
I've a .net application which is hosted. Locally i dont have any issues. But in online hosted website is getting timeout session after 5 mins. I checked the whole website. But no where else its not available. How can i resolve this issue?
Posted

By default, Session timeouts are set to expire in ASP.NET in 20 minutes.
To increase the timeout or expiry you should change the timeout attribute for SessionState in the web.config file
C#
<sessionState  timeout="40" />

Note that if you are using Forms authentication, the Forms timeout setting will log the user out after the set timeout period so you will also have to adjust this attribute:
HTML
<authentication mode="Forms">
          <forms timeout="40"/>
    </authentication>

Redirecting user to login page after session timeout is similar to refreshing the page after certain intervals method. Only thing which will differ is that calculating time after which the page has to be redirected. Hence time can be calculated using Session.timeout property which will give us session timeout value for that session. Add some grace timings to that value and redirect the user to the login page automatically.

Using Window.setTimeout method
In the page Load event:
C#
body.Attributes.Add("onLoad", "window.setTimeout(""window.location.href='login.aspx'""," & (Session.Timeout * 60 * 1000) + 10000 & ");")


Using Meta Tag - Refresh
C#
Response.AppendHeader("Refresh", Convert.ToString((Session.Timeout * 60) + 10) & "; URL=Login.aspx")

Both these methods will redirect the user to login page after session timeout + 10 seconds. This is how you can redirect the user to login page after session timeout without user interaction.

Also refer some CP articles for more details:
Session management options in ASP.NET[^]
Session Management in ASP.NET[^]

To configure Session Time Out on IIS refer the thread provided by Kishore Sharma in Solution 1.
 
Share this answer
 
If you have checked everything in your application and no where you are setting session out
then you need to check with IIS setting for session out.
Check here
Session out setting in IIS
 
Share this answer
 
Similar type of problem is discussed on below thread.
how can i increase Session time out for 12 hour in asp 2.0[^]

Apart from that you will get some good information about session timeout on below links.
Why Session.Timeout is not working for your website[^]
Session timeout not working properly[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900