Compilation error "Failed to load the type" System.Web.Mvc.ViewPage <System.Web.Mvc.HandleErrorInfo> "in the web deployment project. Asp.net mvc rc2
1 answer
Ensure that the appropriate binaries are in the bin folder on the deployment server.
System.Web.Abstractions.dll
System.Web.Mvc.dll
System.Web.Routing.dll
Also, make sure that web.config contains the correct configuration for these dlls in the compilation / assembly section:
<add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> Here is an example of MVC version 1.0, you have to insert yours (for RC2)
+6