All,
if you open the Login.aspx of IBuySpy Store, in the LoginBtn_Click section.
it uses FormsAuthentication.RedirectFromLoginPage(customerId, RememberLogin.Checked);
which is perfectly fine, what I can't understand is it sets another cookie,
Response.Cookies["IBuySpy_FullName"].Value = customerDetails.FullName;
what is the point to set these 2 cookies ?
Thanks,
Bei