我需要以某种方式为 Html.CheckBox 放置相同的 NAME 标记。
我该怎么做?这是我的代码...谢谢!
foreach (var answer in @question.Answers)
{
@Html.CheckBox("answer_CheckBox_" + answer.ID.ToString(), false, new { Value = answer.ID });
<label style="margin-left: 0.5em;">@answer.Title</label>
<br />
}