我有一个带有剃须刀的 asp.net mvc4 应用程序。
查看.cshtml
<table>
<tr>
<th>
Concept technologique
</th>
<th></th>
</tr>
@foreach(Features_Management.Models.First_Attempt fa in Model)
{
<tr style="font-size: 12px; padding:0px;">
<td>
@Html.Raw(@fa.Concept)
</td>
<td>
@Html.ActionLink("Donner votre avis","", new { id_element = @fa.Id_element})
</td>
</tr>
}
</table>
Lightbox
当我点击进入时,我需要在 a 中显示相同的视图ActionLink
。
我怎样才能做到这一点?有什么建议么?