我是初級Web開發人員,這是我第一次在這裏發佈。ASP.NET MVC 3 Razor嵌套foreach with if語句
我有一個問題,因爲某些原因最內在的if語句不被識別,而是被打印爲文本。任何人都有這個解決方案?
編輯:找到一個解決方案:Can't seem to conditionally create a new table row using Razor's foreach and if statements?
@model IEnumerable<FairShare.Models.Product>
@{
ViewBag.Title = "Products";
}
<h2>
Auctions</h2>
<table border="1">
<col width="192" />
@{int i = 0;}
@foreach (var item in Model)
{
if (item.DateEnd.Subtract(DateTime.Now).TotalMinutes > -5)
{
if (i == 0)
{
<tr>
}
<td>
<a href="/ProductDetails/[email protected]">
<img src="Images/@item.ImageName" width="192" height="108"/>
</a>
<br />
<a href="/ProductDetails/[email protected]">@Html.DisplayFor(modelItem => item.ShortTitle)</a><br />
@Html.DisplayFor(modelItem => item.ShortDescription)<br />
<div style="color: red;">@Html.DisplayFor(modelItem => item.TimeLeft)</div>
<div style="color: green;">
Current bid: @Html.DisplayFor(modelItem => item.CurrentBid)</div>
</td>
i = i + 1;
if (i == 5)
{
</tr>
i = 0;
}
}
}
</table>