2

我需要帮助:我需要知道例如的价值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不是它的名字的值。

我怎样才能修复我的片段?

4

1 回答 1

1

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

@Html.ActionLink( ... , _reception = Model[1][i]._reception, ... )
于 2013-10-07T17:05:06.990 回答