Is it possible to access a C# created cookie via Javascript and change the value? (I'm aware that it's a security measure - but whats the alternative)
C#
HttpCookie myCookie = new HttpCookie("theName", "theValue");
Response.Cookies.Add(myCookie);
Javascript
console.log(document.cookie) //doesn't include my cookie..