I need to put the same NAME tag for Html.CheckBox somehow .
How I can do it? Here is my code... Thank you!
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 />
}