我只想知道Html.CheckBoxForASP.NET MVC中HTML帮助程序的正确语法。
我要完成的工作是使用ID值对复选框进行初始检查,因此我可以在Controller中对其进行引用,以查看是否仍处于选中状态。
下面是正确的语法吗?
@foreach (var item in Model.Templates)
{
<td>
@Html.CheckBoxFor(model => true, item.TemplateId)
@Html.LabelFor(model => item.TemplateName)
</td>
}
qq_笑_17