Is there any difference between HttpContext.Current.Request and HttpContext.Request?
问题 If I want to access Request object in controller action I need to write HttpContext.Request , whereas if I want to access the same object in MVC view, I need to write HttpContext.Current.Request . Is there any difference between them? The problem I am facing is that, the cookies which I set through HttpContext.Response.Cookies.Add in controller action are not being retrieved in HttpContext.Current.Request.Cookies collection in an MVC view, though I can see those cookies through javascript.