获取剃须刀中标记的值

本文关键字:剃须刀 获取 | 更新日期: 2023-09-27 18:34:11

我需要帮助:我需要知道例如reception0的值:

  <td >
    <label name="tag@(i)">@Model[1][i]._tag</label>
  </td>
  <td>
    <input type="text" value="@Model[1][i]._client" name="client@(i)"/>
  </td>
  <td>
    <input type="text" value="@Model[1][i]._reception"  class="datepicker" name="reception@(i)"/>
  </td>
  <td>
    <input type="text" value="@Model[1][i]._cloture"  class="datepicker" name="cloture@(i)"/>
  </td>
  <td>
    @Html.ActionLink("enregistrer","Index", new {identificateur = Model[1][i].Id, Pages = "1", _reception ="reception"+""+i.ToString(), _cloture ="cloture"+""+i.ToString(), _client ="client"+""+i.ToString(), tag = "tag"+""+i.ToString()  })
  </td>  

我的问题是我得到了_reception = reception0但我需要reception0的值而不是它的名字。

如何修正我的代码段?

获取剃须刀中标记的值

在链接帮助程序中使用用于输入的值

@Html.ActionLink( ... , _reception = Model[1][i]._reception, ... )