Viewbag.Title error: One or more types required to compile a dynamic expression cannot be found. Are you missing a reference?

前端 未结 5 1655
生来不讨喜
生来不讨喜 2021-02-14 01:03

I have an ASP.NET MVC 5 web application. In every .cshtml view file i get the following error for Viewbag: One or more types required to compile a dynamic expre

5条回答
  •  说谎
    说谎 (楼主)
    2021-02-14 01:43

    Add the following to Application_Start() method in global.asax

    ViewEngines.Engines.Add(new RazorViewEngine());

提交回复
热议问题