我对这个概念很陌生。我想在数据表中每列的末尾添加一个按钮。
我可以在 asp.net 中做到这一点,但我在 MVC 4 中没有任何想法。
请就这个问题给我建议。
下面的代码:
<table class="plans-table">
<thead>
<tr>
@foreach (DataColumn col in table.Columns)
{
<th>(@col.ColumnName)</th>
}
</tr>
</thead>
<tbody>
@foreach (DataRow row in table.Rows)
{
<tr class="plans-row">
@foreach (DataColumn col in table.Columns)
{
<td>
@row[col.ColumnName]
</td>
}
</tr>
}
</tbody>
</table>