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
Post a Comment