用于剃刀的每个人的asp.net

时间:2018-04-12 20:36:57

标签: asp.net-mvc razor

我有一个模特。

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。 enter image description here

2 个答案:

答案 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;%,就可以了