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!
In Global.asax you can create
Global.asax
protected void Session_End(object sender, EventArgs e) { }
which should be called when the session ends.