0

我的视图是这样的,如何在 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..

提前致谢...

4

1 回答 1

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 是选项。并将在模型中定义

于 2013-09-02T07:27:23.677 回答