The view or its master was not found or no view engine supports the searched locations

前端 未结 14 2257
挽巷
挽巷 2020-12-02 15:05

Error like:The view \'LoginRegister\' or its master was not found or no view engine supports the searched locations. The following locations were searched:

14条回答
  •  一整个雨季
    2020-12-02 15:54

    In your LoginRegister action when returning the view, do below, i know this can be done in mvc 5, im not sure if in mvc 4 also.

     public ActionResult Index()
     {
         return View("~/Views/home/LoginRegister.cshtml");
     }
    

提交回复
热议问题