我的申请中有以下路线:-
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "MyAction", id = UrlParameter.Optional } // Parameter defaults
);
现在我添加了另一个名为“ErrorController”的控制器,其中我有索引操作方法。但它抛出错误 -
"A public action method 'MyAction' was not found on controller 'MyApplication.Controllers.ErrorController'."
我在这里缺少什么?