我在视图中使用局部视图(父视图)
我在局部视图中有一个表单,当我单击局部视图的提交按钮时,我想调用局部视图的 [HttpPost] 方法......但它没有被调用,它只调用父视图的 [HttpPost].. .
[HttpPost]
public ActionResult ParentView(Model model)
{
return View();
}
[HttpPost]
public ActionResult PartialView(Model model)
{
return View();
}