这是我的根控制器:
[HttpPost]
public ActionResult Index()
{
}
但它无法加载它给我的项目:
2>'/'应用程序中的服务器错误。无法找到资源。 说明:HTTP 404.您要查找的资源(或其中一个依赖项)可能已被删除,名称已更改或暂时不可用。请查看以下网址,确保拼写正确。
答案 0 :(得分:6)
试试这个
public ActionResult Index()
{
}
[HttpPost, ActionName("Index")]
public ActionResult IndexPost()
{
}
ActionName
属性使您可以创建一个与另一个名称相关的名称的方法