0

我在 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>&nbsp;&nbsp;&nbsp;&nbsp;</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>
4

1 回答 1

0

只需使用常规锚标记,并用于@Url.Action()获取 href:

<a href="@Url.Action("AppDetail")">
    <!-- table here -->
</a>

另外,请注意,虽然 HTML5 现在支持块级链接,但浏览器支持甚至实现并不一致。有些人会很好地连接整个表,而另一些人会做各种奇怪的事情。只是需要注意的事情。

于 2013-03-04T16:37:19.437 回答