I am using CheckBox in my ASP.Net MVC project,
i want to set checkBox by default checked,
My CheckBox is
@Html.CheckBoxFor(model => model.
You could set your property in the model's constructor
public YourModel() { As = true; }