I have a strongly typed ViewModel which contains check boxes.
When I am processing in my Controller for an update, I need to find out whether the item has been checked or not.
How do I go about doing that???
[HttpPost]
public ActionResult Update(MyViewModel viewModel)
{
var isChecked = viewModel.ThePropertyUsedWithYourCheckBoxFor;
}
Or, am I missing something?