Click here to Skip to main content
Sign Up to vote bad
good
See more: C#ASP.NET
hi all,
 
how to increase the session time in my web application. my web.config file
 
<system.web>
<sessionState mode="InProc" timeout="30" ></sessionState>
</system.web>
 
in my local system working is fine.after deployed my web site. i got the problem
 
i.e session time was working only 5mint. after 5mintesam click on any button redirect to lo-gin page.
 
how to in-cress the session time. please help me
 
thanks and regards
Posted 24-Jan-13 4:43am


3 solutions

set this in
<system.web>
<customerrors mode="off" />
<httpruntime executiontimeout="900000" maxrequestlength="4096" usefullyqualifiedredirecturl="false" minfreethreads="8" minlocalrequestfreethreads="4" apprequestqueuelimit="100" enableversionheader="true" />
---
----
</system.web>
 
 
and set
debug ="false"
in web,config, before your publish website.....
 
and set timeout in your IIS for your website......
  Permalink  
In web.config you must set the authentication timeout.
 
<sessionState timeout="120"></sessionState>
<authentication mode="Forms">
  <forms name="Authentication" loginUrl="~/FormStart.aspx" protection="All" timeout="120" />
</authentication>
  Permalink  
How to increase session timeout [^]
sessionState Element[^]
<system.web>
    <authentication mode="Forms">
          <forms timeout="50"/>
    </authentication>
 
    <sessionState timeout="60"  />
</system.web>
  Permalink  

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

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 6,959
1 Prasad_Kulkarni 3,671
2 OriginalGriff 3,359
3 _Amy 3,332
4 CPallini 2,925


Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 24 Jan 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid