How is asp.net Session prolonging, does every request prolongs the end date of Session, and is it enough to call void() by ajax to extent Session end date by another period of time(default 20 min or so...)\[code\]public void ResetSessionTime(){}\[/code\]or do i have to invoke session in some way:\[code\]public void ResetSessionTime(){ User currentUser = HttpContext.Current.Session[userSessionKey] as User;}\[/code\]how does simple request extend session end date?This question claims every post-back prolongs session... This MSDN about Session State Providers : \[quote\] "Each session created by ASP.NET has a timeout value (by default, 20 minutes) associated with it. If no accesses to the session occur within the session timeout, the session is deemed to be expired, and it is no longer valid."\[/quote\]How does request access the session exactly?THIS QUESTION: Keeping session alive C# does not answer how session end date is prolonged by request, only a opinion on how to keep session alive from client sideEDIT:According to this article, method needs to be extended from IHttpHandler, in order to access current session...\[code\]public class KeepSessionAlive : IHttpHandler, IRequiresSessionState{ public void ProcessRequest(HttpContext context) { context.Session["KeepSessionAlive"] = DateTime.Now; }}\[/code\]