Asp – System.Web.HttpContextWrapper2 error in sutekishop – MVC 3

asp.net-mvc

I am currently try to use the sutekishop .Net CMS product but am getting the error
"Could not load type 'System.Web.HttpContextWrapper2'…"
Is this an MVC assembly mismatch? i have uninstalled mvc 5 and installed 3 (required according to the set up) but am still getting the issues.
Any ideas?

Rhys

Full error:

Could not load type 'System.Web.HttpContextWrapper2' from assembly 'System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.

[TypeLoadException: Could not load type 'System.Web.HttpContextWrapper2' from assembly 'System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.]
System.Web.Mvc.MvcHandler.ProcessRequest(HttpContext httpContext) +0
System.Web.Mvc.MvcHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext httpContext) +36
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +181
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75

Best Answer

Have you recently upgraded to .NET 3.5 SP1? We did, and it caused this exact error message on our MVC website (we were using MVC Preview 2).

After uninstalling .NET 3.5 SP1, the problem went away.