I'm using asp.net 4.0 with vb.net backend.
I am not using Forms.Authentication as the user is coming in via SSO. What I would like to do is after a period of no activity, redirect the user to a "Session Timout" page. I've struggled finding examples online as most reference the forms.authenticate
scenario. I've attempted to perform a redirect in the Session_End but have since learned about the state of the http protocol at that time. What I am seeing is, if the session_ends and then the user attempts an action, the session_start is being called
before the subsequent call to Page-Load so I cannot check the sessionID at that time because it will contain a value.
Can I implement Forms.authenticate transparently to the user in order to take advantage of this functionality?
Any ideas. At a lost to say the least.
Thanks
Go to the complete details ...