我試圖用剃刀輸出一個HTML表。表本身的工作,但現在我想一個名爲「甚至」類添加到所有其他行的表:ASP.NET MVC Razor - 如果裏面的
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
</tr>
</thead>
<tbody>
@for (int i = 0; i < ViewBag.MyList.Count; i++)
{
var myObject = ViewBag.MyList[i];
<tr @if (i % 2 == 0) { class="even" }>
<td>myObject.Column1</td>
<td>myObject.Column2</td>
<td>myObject.Column3</td>
</tr>
}
</tbody>
</table>
有明顯有毛病的循環中,如果情況,但什麼是寫這個的正確方法?
謝謝dknaack,工作正常!並感謝您的鏈接。 :) – haagel