delete .aspxAUTH cookie

kstriyhon

New member
Joined
Jul 12, 2009
Messages
2
Programming Experience
Beginner
hello someone here please give me a hand i have an Api and I'm using the cookie .aspxAUTH to log in the user but when i want to log them out there is no way to do it I'd tried everything and nothing seem to work any suggestion to delete this painful cookie? any code will be greatly appreciate, I'm using VB.net thank you in advance to all.:eek::cool:
 
How to delete the "ASPXAUTH" cookie ?

You can write "FormsAuthentication.SignOut()" on your logout button.This method will set the expiration of the cookie to the time you clicked the logout button.This causes the cookie "aspxauth" to be deleted.I hope this helps you.
 
Back
Top