Hi,
I have a classic asp application. I use request.cookies("id") to retreive a cookie value. It finds it no prb
When I am trying trying to do the same in C# it doesn.t find the cookie:
Request.Cookies["id"] is null and when I list all the cookies name and values, it doesnt find it... :(
for (int i = 0; i < Request.Cookies.Count; i++)
{
results.InnerHtml += Request.Cookies[i].Name + ":" + Request.Cookies[i].Value.ToString();
results.InnerHtml += "<br />";
}
Any idea why and how I can retreive my cookie?
...
Go to the complete details ...