我使用@Html.TextBoxFor()
为我发布的模型设置数据,这有效。
现在我试图为CheckBox做同样的事情,在我的模型中设置一个bool值,但它不起作用。
@Html.CheckBoxFor(model => model.bringYourOwnDevice, new
{
@class = "form-control",
@id = "inputBringyourowndevice",
})
public class RegisterModel
{
bool bringYourOwnDevice { get; set; }
}
我做错了什么?