解决方法
通常,您设置会话超时,您还可以添加页眉以自动将当前页面重定向到会话超时之前清除会话的页面。
从http://aspalliance.com/1621_Implementing_a_Session_Timeout_Page_in_ASPNET.2
namespace SessionExpirePage { public partial class Secure : System.Web.UI.MasterPage { public int SessionLengthMinutes { get { return Session.Timeout; } } public string SessionExpireDestinationUrl { get { return "/SessionExpired.aspx"; } } protected override void OnPreRender(EventArgs e) { base.OnPreRender(e); this.PageHead.Controls.Add(new LiteralControl( String.Format("<Meta http-equiv='refresh' content='{0};url={1}'>",SessionLengthMinutes*60,SessionExpireDestinationUrl))); } } }