I am using cookie and I am setting its value like this,
document.cookie = 'province=Alberta; expires=Fri, 3 Dec 2014 20:47:11 UTC; path=/'
And I am trying to read it on my server side like following
if (Response.Cookies["province"].Value != null)
But the Response.Cookies["province"].Value is giving me null.
What may the reason for this?