Reputation: 15866
model
[DefaultValue(true)]
public bool IsActive { get; set; }
view
@Html.CheckBoxFor(model => model.IsActive)
html output and that is my expected
<input data-val="true" data-val-required="Yayında alanı boş bırakılmamalıdır!" id="IsActive" name="IsActive" type="checkbox" value="true" class="valid">
but checkbox is not checked. I cant understand why? What am I missing?
Thanks.
Upvotes: 4
Views: 4098