我已經配置我的Web.Config
文件作爲後續的ASP.NET MVC 2項目:什麼時候在ASP.NET MVC中調用Session_End()?
<sessionState mode="InProc" timeout="1"/>
而且加入Global.asax.cs
如下:
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()
當一個新的用戶那張被稱爲網站。我預計Session_End()
會在空閒1分鐘後被調用,但事實並非如此。我錯過了什麼嗎?
有趣,我會想到這會叫它就在1分鐘大關 – 2010-03-03 17:21:40