I have a strange problem. I want to check if .ASPXAUTH cookie exists with javascript. I do it like this:
authx = document.cookie.indexOf(".ASPXAUTH" + "=");
and the 'authx' value is always -1. But if I tray to find some other cookie like:
foo = document.cookie.indexOf("bar" + "=");
it works. Is there some restriction between javascript and .ASPXAUTH cookie???