0
我試圖將傳遞給查看的模型再次傳遞給控制器。是否可以使用隱藏屬性?將數據傳遞給控制器的隱藏輸入
@model IEnumerable<MvcApp.ViewModel.PlanObjectsViewModel>
<div>
@using (Html.BeginForm("planviewCreate", "plan",System.Web.Mvc.FormMethod.Post))
{
@Html.HiddenFor(Model);
}
<input " type="submit" name="submit" id="submit" value="Submit" class="btn btn-info pull-right">
</div>
在我的控制器;
public ActionResult planviewCreate(PlanObjectsViewModel model)
{
// some code here
return View();
}
這可能嗎?
你問,不先嚐試? –