我有一張表比我的模型顯示一個記錄。例如類別列表。 我想爲此表手動創建行號。MVC查看錶行數計數器
<table class="table table-striped table-bordered table-hover table-full-width dataTable">
@foreach (var item in Model)
{
<tr>
<td>
**I want to Show Row Number Here**
</td>
<td>
@Html.ActionLink(item.Name, "ViewSubCategory", "ProductSubCategory", new { id = item.Id }, null)
</td>
</tr>
}
</table>
在一個pged列表,這有一個錯誤。這個cde沒有意識到pagenumber和pagesize –