T
tdavisjr
Hi,
Does anyone know how to force asp.net authentication to create a new
session cookie after using the FormsAuthentication.SignOut() method.
ASP.NET_SessionId is the name of the session cookie that is use,
however, after logging out, the value of this session cookie remains
the same and users may be able to hit the back button without my
application prompting for another login. Please see the code snipped
below to show you ways I am trying to remove this session cookie
value:
FormsAuthentication.SignOut()
Session("ASP.NET_SessionId") = Nothing
Session.Clear()
Session.Abandon()
Thanks
Does anyone know how to force asp.net authentication to create a new
session cookie after using the FormsAuthentication.SignOut() method.
ASP.NET_SessionId is the name of the session cookie that is use,
however, after logging out, the value of this session cookie remains
the same and users may be able to hit the back button without my
application prompting for another login. Please see the code snipped
below to show you ways I am trying to remove this session cookie
value:
FormsAuthentication.SignOut()
Session("ASP.NET_SessionId") = Nothing
Session.Clear()
Session.Abandon()
Thanks