ActionLink MVC中的图像按钮

Dan*_*mag 7 asp.net-mvc image actionlink

如何在ActionLink按钮中放置图像而不是文本:

@Html.ActionLink("Edit-link", "Edit", new { id=use.userID })
Run Code Online (Sandbox Code Playgroud)

那么如何将文本"编辑链接"更改为图像?

谢谢你的想法.

Ehs*_*jad 13

这样做:

<a href="@Url.Action("Edit")" id="@use.userID">
<img src="@Url.Content("~/images/someimage.png")" />
</a>
Run Code Online (Sandbox Code Playgroud)

或使用其他覆盖传递操作控制器名称:

<a href="@Url.Action("Edit","Controller")" id="@use.userID">
    <img src="@Url.Content("~/images/someimage.png")" />
    </a>
Run Code Online (Sandbox Code Playgroud)

更新:

您还可以创建自定义Html Helper,并可以在应用程序的任何View中重复使用它:

namespace MyApplication.Helpers
{
  public static class CustomHtmlHelepers
  {
    public static IHtmlString ImageActionLink(this HtmlHelper htmlHelper, string linkText, string action, string controller, object routeValues, object htmlAttributes,string imageSrc)
    {
        var urlHelper = new UrlHelper(htmlHelper.ViewContext.RequestContext);
        var img = new TagBuilder("img");
        img.Attributes.Add("src", VirtualPathUtility.ToAbsolute(imageSrc));
        var anchor = new TagBuilder("a") { InnerHtml = img.ToString(TagRenderMode.SelfClosing) };
        anchor.Attributes["href"] = urlHelper.Action(action, controller, routeValues);
        anchor.MergeAttributes(new RouteValueDictionary(htmlAttributes));

        return MvcHtmlString.Create(anchor.ToString());

    }
  }
}
Run Code Online (Sandbox Code Playgroud)

并在视图中使用它:

@using MyApplication.Helpers;

@Html.ImageActionLink("LinkText","ActionName","ControllerName",null,null,"~/images/untitled.png")
Run Code Online (Sandbox Code Playgroud)

输出HTML:

<a href="/ControllerName/ActionName">
  <img src="/images/untitled.png">
</a>
Run Code Online (Sandbox Code Playgroud)