The view 'Index' or its master was not found.

后端 未结 17 2204
逝去的感伤
逝去的感伤 2020-12-15 14:42
The view \'Index\' or its master was not found. The following locations were searched:
~/Views/ControllerName/Index.aspx
~/Views/ControllerName/Index.ascx
~/Views/Sh         


        
17条回答
  •  自闭症患者
    2020-12-15 15:21

    Add the following code in the Application_Start() method inside your project:

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

提交回复
热议问题