【发布时间】:2017-04-21 12:59:44
【问题描述】:
请求网址:http://localhost:51536/Employee/AddUpdateEmployee/2
路由配置
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
控制器动作方法
[ActionName("AddUpdateEmployee"), HttpGet]
public ActionResult AddUpdate(Int64 EmployeeID)
{
var data = (new EmployeeDb()).GetEmployee(EmployeeID);
return View("~/Views/Employee/_AddUpdateView.cshtml", data);
}
当我在浏览器中检查 url 时,我收到此错误:参数字典包含参数“EmployeeID”的空条目
【问题讨论】: