請看下面的代碼。我有另一個foreach循環,但是當我運行頁面行重複。有什麼辦法可以停止重複行。 下面的代碼和結果:嵌套的foreach循環停止重複
![<div class="itemContent">
<table cellspacing="0" cellpadding="0" class="productspecstable" style="float: right">
<tbody>
<!-- B:07L -->
@foreach(var row in select)
{
foreach(var rows in selects)
{
<tr>
<td>@rows.Specifications</td>
<th>@row.LaptopOptions</th>
</tr>
}
}
</tbody>
</table>
</div>
一般內環是** **依賴於外部的.. – 2012-08-04 17:20:14
什麼是你希望它做什麼? – 2012-08-04 17:31:38