Razor pages in MVC are giving a compile error with

2019-06-15 01:56发布

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?

2条回答
Melony?
2楼-- · 2019-06-15 02:12

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!

查看更多
Root(大扎)
3楼-- · 2019-06-15 02:12

Web.config line should go here:

  <configuration>
    <system.web>
      <compilation debug="true" targetFramework="4.0">
        <assemblies>
          <add assembly="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
查看更多
登录 后发表回答