Request.Cookies == Response.Cookies in ASP.NET

Be careful when setting a Response.Cookies property that you don’t need to check the same property in Request.Cookies later while processing the same http session, because these collections reference the same object, so changing one immediately overwrites the value in the other.

Print Friendly, PDF & Email