'/'应用程序中的服务器错误。使用VS2013进行新的MVC项目

时间:2018-01-24 20:21:01

标签: asp.net-mvc

我在Windows 10机器上重新安装了VS2013。

我创建了一个新的MVC项目。构建它并在浏览器上查看没有问题。然后我创建了一个 Customers 控制器,在我尝试查看它之前,一切似乎都没问题。 在浏览器中打开时( http://localhost:63953/Customers/Index ),我在'/'应用程序中获得“服务器错误。”

enter image description here

我试过的步骤。删除了临时文件。清除缓存。仍然没有解决问题。

似乎所有东西都已正确创建但由于某种原因它不知道它在哪里。

enter image description here

1 个答案:

答案 0 :(得分:0)

每个控制器名称都应以" Controller"在ASP.NET MVC上。因此,将Customer类重命名为CustomerController。

public class CustomersController : Controller
{
    public IActionResult Index()
    {
        return View();
    }
}