RDowdall: What is the best way to handle session time-outs?
At page level you can check session on each pageload like this..
if(Session["Session_Name"]==null)
Response.Redirect("login.aspx");
Or
If you want to redirect the page immediately(with out any user action) after session expires then consider this approach. HTTP is stateless, so you have to refresh the page after session expired. Check this code..
Response.AppendHeader("Refresh",
Convert.ToString((Session.Timeout * 60) + 15) & ";
URL=Login.aspx")
Check this link..
http://forums.asp.net/p/1373998/2882266.aspx#2882266
Vijay Kodali ||
My Blog"Don't be afraid to be wrong; otherwise you'll never be right."