ASP.NET MVC Page Won't Load and says “The resource cannot be found”

前端 未结 21 1765
猫巷女王i
猫巷女王i 2020-12-09 14:51

I am having a problem where I try to open my ASP.NET MVC application but I get the ASP.NET error page which says this:

Server Error in \'/\' Applicati

21条回答
  •  情深已故
    2020-12-09 15:39

    I got the same error while building a MVC application.
    In my case it happened because I forgot to add the string "Controller" in my controller name.

    Error With

    public class ProductType : BaseController
    {
        public ProductType()
        {
        }
    }
    

    Resolved

    public class ProductTypeController : BaseController
    {
        public ProductTypeController ()
        {
        }
    }
    

提交回复
热议问题