foreachでカウントする方法
ControllerからViewにデータを送り、Viewで表示しています。
foreachで回してデータを挿入していますが、この数を数えるのは可能でしょうか。
調べてみて、できそうなのですが以下のような感じでしょうか?
多分、簡単なことなのでしょうがお願いします。
<div class="info_table">
<h2>全体</h2>
<hr>
<table>
<tr class="info_header">
<th width="15%">日付</th>
<th width="85%">タイトル</th>
</tr>
@foreach (var a in Model.ZentaiList.Select((Value, Index) => new { Value, Index }))
{
<tr>
<th class="left" width="15%">@m.TourokuNichizi</th>
<th class="left" width="85%"><a href="#" class="modal-open" data-target="con1">@m.Title</a></th>
</tr>
追記なんですが、上記を試してみたんですが、@m.TourokuNichiziの方が定義が含まれていません
となり出来ませんでした。何か他にこうしたら件数が分るという方法があれば教えて下さい。