我在ASP.NET MVC 2项目中配置了我的Web.Config文件:
<sessionState mode="InProc" timeout="1"/>
protected void Session_End(object sender,EventArgs e) { System.Diagnostics.Debug.WriteLine("Session_End"); } protected void Session_Start(object sender,EventArgs e) { System.Diagnostics.Debug.WriteLine("Session_Start"); }
当新用户访问网站时调用Session_Start().我希望在1分钟的空闲时间后调用Session_End(),但事实并非如此.我错过了什么吗?