我需要在视图中打印此 html:
@foreach (string indices in Model.Indices)
{
if (counter == 1)
{
Response.Write("<tr>");
}
Response.Write("<td><span class='select'>@Html.CheckBox('nome',false)</span>)"); @indices Response.Write("</td>");
if (counter > 4)
{
Response.Write("</tr>");
}
}
这将打印我要创建的 html 标记。
我知道我只能写 html 但 Razor 抱怨我没有关闭 foreach。
这是我的第一次尝试:
@foreach (string indices in Model.Indices)
{
if (counter == 1)
{
<tr>
}
<td><span class='select'>@Html.CheckBox('nome',false)</span> @indices </td>
@if (counter > 4)
{
</tr>
}
}