可能重复:
CheckboxList in MVC3 View and get the checked items passed to the controller.
如何在MVC3中创建一个复选框列表并返回在提交时检查的结果。
Asp.net MVC3
答案 0 :(得分:40)
框架中没有内置帮助程序来为您执行此操作。但这并不困难。假设您已经在ViewBag中有一个选择列表,这将正常工作。
@foreach (var o in ViewBag.Options) {
<label><input type="checkbox"
name="MyOptions"
value="@o.Value"/>
<span>@o.Text</span></label>
<br/>
}
你认为模型需要能够接受一个数组,就像这样......
public class MyViewModel {
public ICollection<string> MyOptions { get; set; }
}
所选值将在MyOptions
中。