【发布时间】:2013-10-07 17:01:58
【问题描述】:
我需要帮助:我需要知道例如 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 的值而不是它的名字。
如何修复我的 sn-p?
【问题讨论】:
标签: c# asp.net .net asp.net-mvc razor