I have razor view with checkbox. I cant able to prepopulate checkbox with true/false . Here is my code
<label for="HousingBidsComps_99"> </label>
<div class="check_box_group">
<input type="checkbox" id="HousingBidsComps_99" name="HousingBidsComps[1].IsChargesIncluded" class="customCheckbox" >
<label for="HousingBidsComps_99" style="margin-bottom:0">
<span style="margin-bottom:0">
@Html.LabelFor(model => model.HousingBidsComps[1].IsChargesIncluded, new { @class = "padd-left-0" })
</span>
</label>
</div>