How to Redirect to particular view in Session_End method in Global.asax using asp.net mvc -


how redirect particular view in session_end method in global.asax using asp.net

i tried using response.redirect("~/home/index") giving error "response unrecognized in global.asax".

you can't this. session_end fired without actual http context. user might have closed browser long before event gets fired there redirect to. request , response objects not available.

conclusion: don't this.


Comments

Popular posts from this blog

haskell - Using filter on an item in a list? -

c# - When does PreApplicationStartMethod actually get triggered to run? -

tomcat6 - Exception when stopping container for a with Spring + Quartz + Tomcat web application -