I had this problem before, change:
AuthenticationManager.SignOut();
To:
AuthenticationManager.SignOut(DefaultAuthenticationTypes.ApplicationCookie);
Assuming that you are using ApplicationCookie to store your login information.
I had this problem before, change:
AuthenticationManager.SignOut();
To:
AuthenticationManager.SignOut(DefaultAuthenticationTypes.ApplicationCookie);
Assuming that you are using ApplicationCookie to store your login information.