asp.net-mvc – 运行时错误没有为扩展名’.cshtml’注册的构建提供程序

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 运行时错误没有为扩展名’.cshtml’注册的构建提供程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我尝试在mvc 4中运行我的脚手架视图时,我收到以下错误

Server Error in ‘/’ Application.
There is no build provider registered for the extension ‘.cshtml’. You can register one in the section in
machine.config or web.config. Make sure is has a
BuildProviderAppliesToAttribute attribute which includes the value
‘Web’ or ‘All’.

我发现唯一的答案与智能感知有关,但我的代码在运行时符合罚款。这是一个奇怪的错误,因为我没有使用类库。只有一个控制器可以对其所有视图发送此消息,所有其他控制器/视图都可以正常工作。

解决方法

解决了我的问题。

在Web.config中进行更改

<compilation debug="true" targetFramework="4.5.1" optimizeCompilations="true" />

<compilation debug="true" targetFramework="4.5.1" optimizeCompilations="false" />

ADDED:几分钟后我将web.config恢复为旧,问题不重复。奇怪的东西 )

原文链接:https://www.f2er.com/aspnet/252737.html

猜你在找的asp.Net相关文章