I am working on an asp.net C# webforms project. I want to redirect to login.aspx page when the session expires. I have the javascript based solutions available on the internet which work fine. However I would like it to work off of global.asax page so that the code will be in one place. I tried to redirect from the Session_End event on the Global.asax but didn't work as no Response and Request object available to this event. There were some references to use Application_AcquireRequestState event as in Redirecting to another page on Session_end event but it didn't work either. Any help is greatly appreciated.
Thanks