目的:
" @using Html.Beginform ..を使用してフォームを送信した後、コンテンツを再度ロードせずに同じページにとどまる方法を知りたいです。
コード:
コントローラ
[HttpPost]
public ActionResult Save(DetailHvmModel model)
{
HvmService.Save(model);
return View();
}
意見:
@using (Html.BeginForm(Actions.Valoration_Save, Controllers.Valoration, FormMethod.Post))
{
//Html
}