关于c#:即使项目在Razor html中成功构建,Visual Studio也会显示错误

Visual Studio displaying errors even if projects build successfully in Razor html

IntelliSense不适用于任何Razor HTML标记。在所有Razor HTML标签中也显示红线(@Html.TexBox, @Html.DropdownList MultiSelect etc)

Visual Studio错误窗口中显示三种类型的错误。

错误1:

The type arguments for method
'System.Web.Mvc.Html.InputExtensions.TextBoxFor(System.Web.Mvc.HtmlHelper,
System.Linq.Expressions.Expression>,
System.Collections.Generic.IDictionary)' cannot be
inferred from the usage. Try specifying the type arguments explicitly.

错误2:

One or more types required to compile a dynamic expression cannot be
found. Are you missing references to Microsoft.CSharp.dll and
System.Core.dll?

错误3:

Error 40 The type arguments for method
'System.Web.Mvc.Html.InputExtensions.HiddenFor(System.Web.Mvc.HtmlHelper,
System.Linq.Expressions.Expression>)'
cannot be inferred from the usage. Try specifying the type arguments
explicitly.

有关详细信息,请参阅随附的链接。

enter image description hereenter image description here


问题解决了,删除了以下文件夹中的所有内容。

C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET
Files C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET
Files

谢谢大家抽出时间来。:)


您需要在web.config中包含以下部分(根目录应该可以)

1
2
3
4
5
6
7
    <system.web>
        <compilation debug="true" targetFramework="4.6.1">
           
               
            </assemblies>
       </compilation>
    </system.web>

根据参考更换system.web.helpers版本。


如果关闭并重新生成没有排序,我怀疑您的项目文件有问题。

创建新的ASP.NET Web应用程序并复制文件。有点疼,但可能会起作用。


这种情况时常发生在我身上,通常重建包含错误的项目对我来说是可行的。你试过了吗?

让我知道。