The controller for path was not found or does not implement IController

前端 未结 20 2515
一个人的身影
一个人的身影 2020-11-29 20:50

I have an MVC4 project with language selection:

  • en
  • nl
  • fr
  • de

1 main part with:

  • About
  • Common (fo
20条回答
  •  隐瞒了意图╮
    2020-11-29 21:17

    in my case, the problem was that the controller class has not been publicly announced.

    class WorkPlaceController : Controller
    

    the solution was

    public class WorkPlaceController : Controller
    

提交回复
热议问题