我在 mvc 中有程序,它从控制器中获取数据,然后在视图中显示。它制作了包含数据的动态表。在它里面有一个链接“查看详细信息”,但我不想将单个链接制作成一个链接,而不是单个链接:
@Html.ActionLink("SEE DETAILS", "AppDetail", new { @id = item.id, appnameformp = item.AppNameForMP }, new { @style = "color:#C55000;font-size: 11px;text-decoration:none;" })
但我不知道该怎么做......任何帮助都非常感谢并提前感谢。
<div class="grid_9.5 alpha">
@foreach (var item in Model)
{
<div class="grid_4 alpha box_shadow" id="featured-subbillboard" style="margin-bottom:10px;" >
<table>
<tr >
<td><img height="140" width="130" src=@item.imgfile />
</td>
<td> </td>
<td class="table">
<h1 class="heading1" style="margin-top:10px; line-height: .4em;">@item.AppNameForMP </h1>
<h2 class="heading2">@item.DevName </h2>
<br />
<p class="para">
@if (item.AppDesc.Length > 50)
{@item.AppDesc.Remove(@item.AppDesc.Length -50)}
else
{ @item.AppDesc}
</p>
@Html.ActionLink("SEE DETAILS", "AppDetail", new { @id = item.id, appnameformp = item.AppNameForMP }, new { @style = "color:#C55000;font-size: 11px;text-decoration:none;" })
</td>
</tr>
</table>
</div>
}
</div>