IList <model> mvc view </model>中的单选按钮绑定

时间:2013-09-01 04:58:28

标签: asp.net-mvc asp.net-mvc-3 asp.net-mvc-4

如何在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..

提前致谢...

1 个答案:

答案 0 :(得分:0)

试试这个

 @foreach (var item in Model)
                            {


     @Html.RadioButtonFor( item => item .QuestionId, item.option1 )


     @Html.RadioButtonFor( item => item .QuestionId, item.option2)

    }
    <input type="submit" value="Save" />
    }

option1和option2是选项。并将在模型中定义