I need to check a checkbox by default:
I tried all of these, nothing is checking my checkbox -
@Html.CheckBoxFor(m => m.AllowRating, new { @value
only option is to set the value in the controller, If your view is Create then in the controller action add the empty model, and set the value like,
Public ActionResult Create() { UserRating ur = new UserRating(); ur.AllowRating = true; return View(ur); }