I\'m looking for a tutorial, blog entry, or some help on the technique behind websites that automatically push users (ie without a postback) when the session expires. Any h
Just copy and paste this code snippet in your Web.Config file :
You can put this line to your Site.Master :
Response.AppendHeader("Refresh", Convert.ToString((Session.Timeout * 60)) + ";URL=~/Login.aspx");