我有一个 asp.net MVC4 应用程序,我在视图中有这个表Projet
:
<table style="line-height:30px; ">
<tr>
<th style="width:20%;color:blue">
Description de projet
</th>
<th style="width:20%;color:blue">
Le client
</th>
<th style="width:20%;color:blue">
Le statut du client
</th>
<th style="width:20%;color:blue">
Le groupe responsable
</th>
</tr>
@for (int i = 0; i < Model.Count; i += 4) {
<tr>
<td style="width:20%">
<center>@Model[i]</center>
</td>
<td style="width:20%">
<center>@Model[i+1]</center>
</td>
<td style="width:20%">
<center>@Model[i+2]</center>
</td>
<td style="width:20%">
<center>@Model[i+3]</center>
</td>
</tr>
}
</table>
我的问题是:即使我使用了标签,表格内的行也不会显示<th>
。
为什么会这样?我该如何解决?