如果选中“活动”或“非活动”单选按钮,则为RadioButtonFor,1或0值

时间:2016-07-08 08:38:26

标签: c# model-view-controller radio-button

如何将Status值设置为0或1,具体取决于选中的Status radiobutton?我将需要此值以使用布尔数据类型保存在数据库表中。谢谢!

@Html.LabelFor(m => m.status)
@Html.RadioButtonFor(m => m.status, "Active", new { Checked = "checked", @style = "margin-left:auto" })
<label class="rbtnlabel">Active</label>
@Html.RadioButtonFor(m => m.status, "Inactive", new { @style = "margin-left:auto" })
<label class="rbtnlabel">Inactive</label>

0 个答案:

没有答案