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

c++ - error: use of deleted function -

Cursor error with postgresql, pgpool and php -

iphone - Request for member 'uitextfield' in something not a structure or union? -