4
我需要爲Html.CheckBox設置相同的NAME標記。相同的HTML.CheckBox名稱MVC3
我該怎麼做?這是我的代碼...謝謝!
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 />
}
「answer_CheckBox_」 + answer.ID.ToString()必須已經接管了名。更新。再試一次。 –
是的......謝謝! –