Simplest way to detect session timeout in an asp .net 2.0 web application in C#
The simplest way to detect if a session timeout occurred in an asp .net 2.0 web application use Global.asax Session_Start and Page_Load event. see: http://blogs.msdn.com/nikhiln/archive/2007/06/21/detecting-session-timeout-in-asp-net-2-0-web-applications.aspx Using Session["xxx"] value to determine the session timeout: This