将动作链接更改为图像

时间:2012-07-31 11:17:41

标签: asp.net asp.net-mvc razor

如何将动作链接@Html.ActionLink("Edit", "Edit", new { id=item.id_tache })更改为图像。我刚开始使用asp .net mvc。 (我想显示图像而不是文字)

2 个答案:

答案 0 :(得分:3)

您需要定期链接:

<a href="@Url.Action(...)"><img src="Url.Content("~/...")" alt="..." /></a>

答案 1 :(得分:2)

这是一个小黑客

@Html.ActionLink("Button Name", "Index", null, new { @class="classname" })

然后在样式表中创建一个类

a.classname
{
 background: url(../Images/image.gif) no-repeat top left;
 display: block;
 text-indent: -9999px; /* hides the link text */
 }