Hi,
I want in Session_Start method check if cookie with specific key exists and if not create cookie with this key.
if (Request.Cookies[key] == null)
{
SetCookie();
}
But in Session_Start it is always NULL. If check it in another place I get cookie's value.
Why is it always NULL in Session_Start?
Thanks,
Raya