I have a null check in code that is checking to see whether a cookie exists in the response object already:

         if (HttpContext.Current.Response.Cookies["CookieName"] != null)
        {
            sessionCookie = HttpContext.Current.Response.Cookies["CookieName"];
            cookieValue = sessionCookie.Value;
        }

When I check through the debugger the key doesn't exist before the check, but it does exists after the check. Thus the return value from the cookie is null. Does checking for a cookies existence automatically create the cookie?

Thanks in advance

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

This happens because HttpContext.Current is associated with the thread that the request is currently executing on. On a different thread, the framework has no way to know which request you want to use.

There are ways to fix this-- for example .NET's BackgroundWorker can propagate context to another thread. The Asynchronous Pages support in ASP.NET will also propagate context correctly.

So you have two options: either rewrite all your async code to use context-passing async mechanisms like BackgroundWorker or Async Pages, or change your code to check for HttpContext.Current==null before trying to access any properties of HttpContext.Current

link|improve this answer
Makes sense, I think I'll need to check on the null value then. – Martini48 Feb 13 at 19:43
sounds good.. let us know how it turns out for you.. gald I could lend you a helping hand... – DJ KRAZE Feb 13 at 19:47
Will do, thanks for the help! – Martini48 Feb 13 at 19:54
I would also make sure that where you are expecting to see / assign the cookie ["CookieName"] for example that you try to assign it .. sort of like if you were to assign a Session["MySession"] = some variable.. does this make sense...? – DJ KRAZE Feb 13 at 19:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.