我有一个模特。
public class OtchetDetails
{
String bob_name;
String brigade_name;
Int64 timeToTask;
String status;
}
我在视图中传递值:
List<OtchetDetails> taskOtchet = taskOtchetRepository.getOtchet(id);
return View(taskOtchet);
如何在循环中显示内容?
<% @foreach (var item in Model)
{
<tr>
<td class="left"> @item.bob_name</td>
<td>
@Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
</td>
</tr>
}
找不到bob_name。
答案 0 :(得分:2)
在您的视图中尝试以下代码。我希望能帮助你。
查看:强>
@model IEnumerable<OtchetDetails>
@foreach (var item in Model)
{
<tr>
<td class="left"> @item.bob_name</td>
<td>
@Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
</td>
</tr>
}
答案 1 :(得分:0)
删除&lt;%,就可以了