我的视图是这样的,如何在 mvc 中绑定单选按钮?
@model IList<CMM.Models.Question>
@using (Html.BeginForm("Index", "Ques", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post, new { @class = "form-3" }))
{
@foreach (var item in Model)
{
@Html.RadioButtonFor(item.QuestionId,item.QuestionId,item)//error in this line
@Html.RadioButtonFor(item.QuestionId,item.QuestionId,item)//error in this line
}
<input type="submit" value="Save" />
}
我只想为每一行检查 1 个单选按钮。并且从数据将传递给我的控制器。我的控制器是这样的。
[HttpPost]
public ActionResult Index(IList<Question> sq)
{
return View();
}
我如何显示单选按钮。我想要收音机中的 3 个功能。
1)different id's
2)different values
3)javascript func call onclick of radio button..
提前致谢...