我正在使用默认预设项目在其上构建我自己的应用程序。
我添加了我自己的控制器MyController
和一个My
带有index.cshtml
.
这是控制器代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace WebProject1.Controllers
{
public class MyController: Controller
{
//
// GET: /My/
public ActionResult Index()
{
return View();
}
}
}
这是我的RouteConfig.cs
:
// ...
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "My", action = "Index", id = UrlParameter.Optional }
);
}
}
// ...
但是,当我开始调试并导航到/My/
404 错误时,The resource or one of its dependencies cannot be found.
会显示一条消息。
如何使我的控制器工作?