标签: asp.net-mvc checkboxfor
我有一个强类型的ViewModel,其中包含复选框。
当我在我的控制器中处理更新时,我需要确定该项目是否已经过检查。
我该如何去做?
答案 0 :(得分:1)
[HttpPost] public ActionResult Update(MyViewModel viewModel) { var isChecked = viewModel.ThePropertyUsedWithYourCheckBoxFor; }
或者,我错过了什么?