Forms authentication ticket is storing password in a cookie?
It's recommended that we should never store passwords in cookies.
By using and storing .net forms authentication tickets in cookies aren't we doing just that?
Ticket does not contain password. It contains just information about user it was created for (user name), date when it was created, date when it expires.
Information above is encrypted and can only be decrypted by server.