I have created a web application, and I want it to time out after a period of inactivity.
The web is hosted by godaddy, and has SQL server2005
In the Web.Config page I have added
<sessionState mode="InProc" stateConnection String="tcpip=1 27.0.0.1:42424" sqlConnectionSt ring="" cookieless="fal se" timeout="120"/>
<authenticati on mode="Forms">
<forms timeout="2"/>
</authentication>
I also have
<compilation debug="false" strict="false" explicit="true" >
and in the form.load I have
Session.Timeout = 2
I've tried various combinations of these, but in no case does the application EVER TIMEOUT after any period of inactivity. I am new to this stuff and am surprised I've already gotten this far. What am I missing with getting it to timeout?
The web is hosted by godaddy, and has SQL server2005
In the Web.Config page I have added
<sessionState mode="InProc" stateConnection String="tcpip=1 27.0.0.1:42424" sqlConnectionSt ring="" cookieless="fal se" timeout="120"/>
<authenticati on mode="Forms">
<forms timeout="2"/>
</authentication>
I also have
<compilation debug="false" strict="false" explicit="true" >
and in the form.load I have
Session.Timeout = 2
I've tried various combinations of these, but in no case does the application EVER TIMEOUT after any period of inactivity. I am new to this stuff and am surprised I've already gotten this far. What am I missing with getting it to timeout?
Comment