MVC 4多个HttpPost单动作

时间:2014-05-25 22:34:21

标签: asp.net-mvc-4

我正在研究MVC 4项目。我有HomeController和Index Action。而Index动作有3个HttpPost方法(Login,Register和LostPassword)。 但不是工作岗位方法。放断点。但程序没有调试这一点。

public ActionResult Index()
{
    return View();
}

[HttpPost]
public ActionResult Login(UserLogin user)
{
   xxxxx;
   return Json();
}

[HttpPost]
public ActionResult Register(UserRegister user)
{
   xxxxx;
   return Json();
}

[HttpPost]
public ActionResult LostPassword(UserProfile user)
{
   xxxxx;
   return Json();
}

我该如何解决这个问题?感谢。

0 个答案:

没有答案