This question already has an answer here:
I can't access to HttpContext.Current on my project MVC4 with C#4.5
I've added my reference to System.Web in my project and added the using instruction on my controller page...
But I can access currentHandler only...
var context = HttpContext.CurrentHandler; //Current
Is HttpContext.Current
deprecated on C#4.5 ?
I've looked this help page : http://msdn.microsoft.com/en-us/library/system.web.httpcontext.aspx
Adding a bit to mitigate the confusion here. Even though Darren Davies' (accepted) answer is more straight forward, I think Andrei's answer is a better approach for MVC applications.
The answer from Andrei means that you can use
HttpContext
just as you would useSystem.Web.HttpContext.Current
. For example, if you want to do this:you should instead do this:
Both achieve the same result, but (again) in terms of MVC, the latter is more recommended.
Another good and also straight forward information regarding this matter can be found here: Difference between HttpContext.Current and Controller.Context in MVC ASP.NET.
This is because you are referring to property of controller named
HttpContext
. To access the current context use full class name:However this is highly not recommended to access context like this in ASP.NET MVC, so yes, you can think of
System.Web.HttpContext.Current
as being deprecated inside ASP.NET MVC. The correct way to access current context isor if you are inside a Controller, just use member
Have you included the
System.Web
assembly in the application?If not, try specifying the
System.Web
namespace, for example: