vote up 1 vote down star

Possible Duplicate:
ASP.NET MVC Ajax.ActionLink with Image

The Html.RouteLink() HtmlHelper works great for text links. But what's the best way to link an image?

flag

65% accept rate
-1: Hmm... 8 upvotes for answering your own question, which was a duplicate to begin with (stackoverflow.com/questions/341649/…)... Hmm... – Jim G. Jan 25 at 4:24
Why is this question was closed? The other question ask for an Ajax Image link. There is a fundamental different between the two... – firefly Jan 26 at 2:08
@firefly: Not in this context. – Jim G. Jan 26 at 15:18
I don't understand why this was closed. It is clearly not the same question. – Sailing Judo Feb 10 at 14:07
I disagree that this is a duplicate. – Zack Peterson Feb 10 at 17:22
show 2 more comments

closed as exact duplicate by Marc Gravell Jan 25 at 6:11

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question.

7 Answers

vote up 7 vote down check

here mine, its the core function make some overloads

 public static string ImageLink(this HtmlHelper htmlHelper, string imgSrc, string alt, string actionName, string controllerName, object routeValues, object htmlAttributes, object imgHtmlAttributes)
    {
        UrlHelper urlHelper = ((Controller)htmlHelper.ViewContext.Controller).Url;
        string imgtag = htmlHelper.Image(imgSrc, alt,imgHtmlAttributes);
        string url = urlHelper.Action(actionName, controllerName, routeValues);



        TagBuilder imglink = new TagBuilder("a");
        imglink.MergeAttribute("href", url);
        imglink.InnerHtml =imgtag;
        imglink.MergeAttributes(new RouteValueDictionary(htmlAttributes), true);

        return imglink.ToString();

    }
link|flag
vote up 7 vote down
<a href="<%=Url.RouteUrl(...)%>"><img src="..." alt="..." /></a>
link|flag
+1 as this helped me. Thanks. – RichardOD Jun 26 at 8:44
vote up 4 vote down
<%= Html.ActionLink(Html.Image(imageUrl, imageAlt), actionName, controllerName) %>

could work, the image extension is from the futures assembly. Or make your own extention.

link|flag
No tag-soup. Nice. – Zack Peterson Nov 9 at 22:04
I like this solution the best. Build on top of an existing block. Nice! – firefly Jan 26 at 2:13
vote up 3 vote down

This is an updated version that I have from MiniScalope answer above. I'm using VS2010 and ASP.Net MVC 2 Preview

        public static string ImageLink(this HtmlHelper htmlHelper, string imgSrc, string alt, string actionName, string controllerName, object routeValues, object htmlAttributes, object imgHtmlAttributes)
    {
        UrlHelper urlHelper = ((Controller)htmlHelper.ViewContext.Controller).Url;
        TagBuilder imgTag = new TagBuilder("img");
        imgTag.MergeAttribute("src", imgSrc);
        imgTag.MergeAttributes((IDictionary<string, string>) imgHtmlAttributes,true);
        string url = urlHelper.Action(actionName, controllerName, routeValues);



        TagBuilder imglink = new TagBuilder("a");
        imglink.MergeAttribute("href", url);
        imglink.InnerHtml = imgTag.ToString();
        imglink.MergeAttributes((IDictionary<string, string>)htmlAttributes, true);

        return imglink.ToString();

    }
link|flag
vote up 2 vote down
<%= Html.RouteLink("PLACEHOLDER", ...).Replace("PLACEHOLDER", "<img src=""..."" alt=""..."" />")%>
link|flag
This one requires a bunch of ugly string manipulation. – Zack Peterson Mar 27 '09 at 0:38
vote up 1 vote down

Create your own helper extension.

public static string Image(this HtmlHelper helper, string src, string alt)
{
    TagBuilder tb = new TagBuilder("img");
    tb.Attributes.Add("src", helper.Encode(src));
    tb.Attributes.Add("alt", helper.Encode(alt));
    return tb.ToString(TagRenderMode.SelfClosing);
}
link|flag
This doesn't create an image action link though. Isn't that what Zack is asking for? – Nick DeVore Mar 23 '09 at 21:54
vote up 1 vote down

I don't have enough SO swagger to add a comment, but this is a comment on MiniScalope's comment above:

UrlHelper urlHelper = ((Controller)htmlHelper.ViewContext.Controller).Url;

I would suggest making this an HtmlHelper extension method in itself (and simplify it), for reuse:

private static UrlHelper Url(this HtmlHelper helper)
{ 
  return new UrlHelper(helper.ViewContext.RequestContext);
}
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.