MVC mvc两个单选按钮(组)绑定到一个模型属性

时间:2017-10-01 10:31:25

标签: asp.net-mvc

我想放两个单选按钮(女巫在一组中)并将选择绑定到一个模型上。

我的模特有这个属性:

public bool is_active { get; set; }

我在视野中的失败尝试是:

@{ Html.RadioButtonFor(m => m.is_active, true )}  active
@{ Html.RadioButtonFor(m => m.is_active, false)}  inactive

1 个答案:

答案 0 :(得分:0)

您的代码需要

@Html.RadioButtonFor(m => m.is_active, true)
@Html.RadioButtonFor(m => m.is_active, false)

如果没有前导@,则会执行RadioButtonFor()方法,但不会输出结果(将其包装在@{ .. }代码块中不会这样做并且是不必要的)