Hello,
I'm trying to
solve the following problem but I can't:
The issue is prevent "broken authentication and session management" security problem.
In logout I put this code:
Membership.DeleteUser(Membership.GetUser(true).UserName, true);
MembershipProvider.SignOut(MembershipLogoutMethods.CloseButton);
FormsAuthentication.SignOut();
Session.Abandon();
Response.Cookies[ Go to the complete details ...