ASP.NET MVC3中的单选按钮组

时间:2013-06-08 05:34:41

标签: c# asp.net asp.net-mvc asp.net-mvc-3

我在名为Child_With_Bed的模型中有一个布尔字段。

Image

现在,我想要单选按钮组,其中yes = true而no = false。因此,当我选择Child_With_Bed时,设置值。

我尝试了下面的代码,但它没有与我的模型绑定。

<tr>
  <th>
     <%: Html.LabelFor(model => model.Child_With_Bed)%>
  </th>
  <td>
     <%: Html.RadioButton("child", Model.Child_With_Bed)%> Yes 
     <%: Html.RadioButton("child", !Model.Child_With_Bed)%> No 
  </td>
</tr>

我不知道该怎么做。请帮忙。在此先感谢。

1 个答案:

答案 0 :(得分:1)

试试这个:

<% foreach (var item in Model)
    {
        Html.RadioButtonFor(m => m.item, "Yes")%>
         Yes
        <% @Html.RadioButtonFor(m => m.item, "No")%>
          No
  <%  }%>