From what I understand AuthCookie, that is created by FormsAuthentication, takes care of encrypting (am I right?) and creating the Auth Token. Once created, the token/authCookie is passed on every client <-> server communiqué
From what I understand to keep the token from being highjacked, we need to put the site under SSL (HTTPS)
Quesetion #1: will AJAX calls compromise the security of our site? will they even work under HTTPS.
Question #2: We use IIS7.5 and some of our pages don't require a secure login; but given the AuthCookie, I guess it's best to put everything under HTTPS. will there be a noticeable performance drawback with this approach? what are some of the other disadvantages?
cheers