On-session-expire-event?

I am programming an MVC3 application. Now I hava to call the script if the users expire.

Is there something like an on-session-expire event that fires when a user session has expired?

Thank you so much!

+8
asp.net-mvc asp.net-mvc-3
source share
1 answer

In Global.asax you can create

 protected void Session_End(object sender, EventArgs e) { } 

which should be called when the session ends.

+6
source share

All Articles