Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Razor pages in MVC are giving a compile error with System.Web.Helpers not being found

My razor view is failing to compile with the following error:

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 

Compiler Error Message: CS0234: The type or namespace name 'Helpers' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)

I have System.Web.Helpers added as a reference to my project, so I am not sure what else I need to do. I have also tried a clean rebuild after adding the reference, and no change.

What am I missing?

like image 274
KallDrexx Avatar asked Nov 12 '10 22:11

KallDrexx


1 Answers

Aha figured it out. I needed to add

<add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

To the <assemblies> section of web.config!

like image 135
KallDrexx Avatar answered Oct 05 '22 19:10

KallDrexx