Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Session timeout reset on every request

Does Session timeout reset on every request regardless of whether we check sessions variables? Or we should use atleast one session variables?

Does Ajax request cause resetting session timeout? like Update Panel ,jQuery ajax ,...

thanks


Edit 1)

Does HTTP Get cause resetting session timeout??

like image 228
Arian Avatar asked Apr 29 '12 06:04

Arian


1 Answers

Does Session timeout reset on every request regardless of whether we check sessions variables?

Session will not expire if you keep on calling server side code. The session time out will be resetting on each request to server. On subsequent requests to the same web site, the browser supplies the ASP.NET_SessionId Cookie which the server side module uses to access session value(like user information).

---------------------------------------------------------------------------------
                     How to detect the Session TimeOut
---------------------------------------------------------------------------------

enter image description here

---------------------------------------------------------------------------------

Question - 2 - Does Ajax request cause resetting session timeout? like Update Panel ,jQuery ajax ,...

Question - 3 - Does HTTP Get cause resetting session timeout??

Session will expire in case user waited too long between requests. Session will not expire if you keep on calling server side code. The session time out will be be resetting on each request to server

Web.Config

<sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" 
 sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
    cookieless="true" timeout="1" />
like image 189
Pankaj Avatar answered Sep 19 '22 21:09

Pankaj