Hi Dynamicweb,
When using Security.Logoff() my user is logged off correctly, but when I am using Security.Logoff(false), the user is not properly logged off as it seems like this section is missing in the overloaded method:
Dim oneSessionCookie = ContextManager.Cookies.GetCookie("DW_ExtranetSessionCookie")
If Not IsNothing(oneSessionCookie) Then
oneSessionCookie("DWExtranetUsername") = ""
oneSessionCookie("DWExtranetPassword") = ""
ContextManager.Cookies.SetCookie(oneSessionCookie)
End If
I would be glad if the section above could be added to the code as well.
Best regards, Anders