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:43


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 369
1 OriginalGriff 190
2 Tadit Dash 168
3 CPallini 163
4 Aarti Meswania 153
0 Sergey Alexandrovich Kryukov 10,169
1 OriginalGriff 7,749
2 CPallini 4,181
3 Rohan Leuva 3,482
4 Maciej Los 3,089


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