Site times out too soon

  • Thread starter Thread starter Walter Levine
  • Start date Start date
W

Walter Levine

I have a .net website that appears to be timing out after about only 30
minutes
The Web.Config file looks like the one below:
I thought that the <timeout="480"> should give me 8 hours.
What am I doint wrong?
No timeout would also be OK
Thanks for any help
Walter
*******************************************
<configuration>
<system.web>
<customErrors mode="Off"/>
<authentication mode="Forms">
<forms name="AuthCookie" path="/" loginUrl="CGPLogin.aspx"
protection="All" timeout="480">
</forms>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
</configuration>
 
If you are using Windows Server 2003, take a look at Application Pools
-> DefaultAppPool -> Properties within IIS. It may be overriding your
Web.config settings.
 
Back
Top