0

如何将字符串 linkText 写为 null?

 <i class="icon-pencil" >@Html.ActionLink( null,"edit", new { id = item.content_id }) </i>
4

2 回答 2

2

我感觉你正在使用 Twitter Bootstrap(因为<i>标签上有“icon-pencil”类)。

在这种情况下,最好将标签放在标签<i>内,<a>而不是相反:

<a href="@Url.Action("edit", new { id = item.content_id })"><i class="icon-pencil"></i></a>
于 2012-10-05T12:10:00.083 回答
-1

将 null 替换为:

string.empty
于 2014-02-14T10:20:08.907 回答