如何解决mvc引擎无法解决的[ControllerAction]属性?

时间:2014-05-19 09:52:02

标签: asp.net-mvc visual-studio asp.net-mvc-4

2 个答案:

答案 0 :(得分:1)

ControllerAction属性用于MVC的预发布版本(我认为可以追溯到大约6年)。它不再需要(可能不再存在)。

答案 1 :(得分:1)

替换

public void Category(int id) public ActionResult Category(int id)

带有RenderView("List", category)

return View("List", category)

并删除[ControllerAction]属性