我想在 ViewBag 中设置值,如下所示
public ActionResult Register(Guid accountId)
{
ViewBag.AccountId = accountId;
return View("Register", "Account");
}
现在在注册视图中,我可以设置,如下所示
@Html.HiddenFor(m => m.AccountId, new { id = "hdaccountid", value = ViewBag.AccountId })
我想用 ViewBag 值更新模型属性。所以当我想在控制器中更新模型时,模型属性包含正确的值。
我不想使用 ModelView。请建议。