I know there are lot of discussions about this but I am still not clear on this. I have a website www.all.com and www.bll.com. Please note that they are two different websites on two different servers.
Both of them uses Forms Authentication. If I use the same validation key and decryption key in web.config of both the websites, why can't I share Auth Cookie between these two websites? I have read that Auth cookie can be shared only between sub domains.
user logs into www.all.com, I authenticate the user and add auth cookie to the response and redirect them to secure page of www.bll.com. Now bll.com should be able to decrypt the auth cookie and have the user authenticated in bll.com. Why is this not possible?
Does Auth cookie scope ends if redirected to a different domain?