up vote 39 down vote favorite
14
share [g+] share [fb]

is there anyway to have an image act as an ajax actionlink? I can only get it to work using text. Thanks for your help!

link|improve this question
The answers to stackoverflow.com/questions/210711/… may help. – Eduardo Campañó Feb 23 '11 at 22:21
feedback

9 Answers

From Stephen Walthe, from his Contact manger project

 public static class ImageActionLinkHelper
{

    public static string ImageActionLink(this AjaxHelper helper, string imageUrl, string altText, string actionName, object routeValues, AjaxOptions ajaxOptions)
    {
        var builder = new TagBuilder("img");
        builder.MergeAttribute("src", imageUrl);
        builder.MergeAttribute("alt", altText);
        var link = helper.ActionLink("[replaceme]", actionName, routeValues, ajaxOptions);
        return link.Replace("[replaceme]", builder.ToString(TagRenderMode.SelfClosing));
    }

}

You can now type in your aspx file :

<%= Ajax.ImageActionLink("../../Content/Delete.png", "Delete", "Delete", new { id = item.Id }, new AjaxOptions { Confirm = "Delete contact?", HttpMethod = "Delete", UpdateTargetId = "divContactList" })%>
link|improve this answer
Just an FYI, I added an additional parameter to the ImageActionLink method to accept the controller name as the MVC ActionLink method has and it works flawlessly! Thanks – Dustin Laine Jan 4 '10 at 17:55
5  
In addition to this, in the above code sample link will not have the method Replace as an available option on it. You'll need to first call ToString() or ToHtmlString() on it before being able to call Replace(). – mwright Apr 6 '10 at 15:48
1  
I just added an "MVC3 and Razor" updated version of this below... – Arjan Einbu Jun 1 '11 at 12:36
I feel a little silly, but, I can't work out how to implement this. I don't suppose you can explain a little where the class needs to go? – wil Nov 3 '11 at 10:56
feedback

Here's the easiest solution I've found:

<%= Ajax.ActionLink("[replacethis]", ...).Replace("[replacethis]", "<img src=\"/images/test.gif\" ... />" %>

The Replace() call is used to push the img tag into the action link. You just need to use the "[replaceme]" text (or any other safe text) as a temporary placeholder to create the link.

link|improve this answer
1  
I like this pragmatic solution! – Ropstah Jun 16 '09 at 11:09
Simple and working! – jao Jul 11 '09 at 12:59
1  
+1: Clever. Thank you. – Jim G. Oct 17 '09 at 19:46
Nice and clever solution. Thank you. – Naveed Butt Apr 12 '11 at 19:22
2  
I tried to use the above code (with .ToHtmlString() before ".Replace") and it does not do the trick. It just throws the whole string in there. Has this changed in mvc3 or am I missing something? – PedroC88 May 22 '11 at 23:22
show 2 more comments
feedback

This is an MVC 3 update to Black Horus' answer:

public static class ImageActionLinkHelper
{
    public static IHtmlString ImageActionLink(this AjaxHelper helper, string imageUrl, string altText, string actionName, object routeValues, AjaxOptions ajaxOptions)
    {
        var builder = new TagBuilder("img");
        builder.MergeAttribute("src", imageUrl);
        builder.MergeAttribute("alt", altText);
        var link = helper.ActionLink("[replaceme]", actionName, routeValues, ajaxOptions).ToHtmlString();
        return new MvcHtmlString(link.Replace("[replaceme]", builder.ToString(TagRenderMode.SelfClosing)));
    }

}

You can now type in your .cshtml file :

@Ajax.ImageActionLink("../../Content/Delete.png", "Delete", "Delete", new { id = item.Id }, new AjaxOptions { Confirm = "Delete contact?", HttpMethod = "Delete", UpdateTargetId = "divContactList" })
link|improve this answer
thanks for the update. It was quite helpful; however you appear to have 2 extra characters at the end of the .cshtml line. – snumpy Jun 3 '11 at 16:32
Thanks, @snumpy! This was a typical copy-paste error... :) It's fixed – Arjan Einbu Jun 6 '11 at 10:38
I feel a little silly, but, I can't work out how to implement this. I don't suppose you can explain a little where the class needs to go? – wil Nov 3 '11 at 10:57
You can put it anywhere. (At root level of your MVC application will do fine...) (You might need to put in a @using directive at the top of your razor files, pointing at the namespace of the class, if any) – Arjan Einbu Nov 3 '11 at 14:04
feedback

Another solution is to create your own extension method:

ActionLink<TController>(this HtmlHelper helper, Expression<Action<TController>> action, string linkText, object htmlAttributes, LinkOptions options)

and as the last parameter is the enumeration LinkOptions

[Flags]
public enum LinkOptions
{
    PlainContent = 0,
    EncodeContent = 1,
}

and then you can use it as follows:

Html.ActionLink<Car>(
     c => c.Delete(item.ID), "<span class=\"redC\">X</span>",
     new { Class = "none left" }, 
     LinkOptions.PlainContent)

I'll post whole description of this solution on my blog: http://fknet.wordpress.com/

link|improve this answer
feedback

The short answer is that is not possible. Your options are to write your own extension method to have an ImageActionLink, not too hard to do. Or add an attribute to the actionLink and replace the innerhtml with the image tag.

link|improve this answer
feedback

See version 7 the Contact Manager Tutorial on http://asp.net/mvc. Stephen Walther has an example of creating an Ajax.ActionLink that is an image.

link|improve this answer
A link would be useful – Schneider Apr 1 '09 at 6:17
here's the link asp.net/learn/mvc/tutorial-32-cs.aspx – jao Oct 1 '09 at 14:04
feedback

MVC3, Html.ActionImageLink and Ajax.ActionImageLink

Thank you to all the other answers in helping me with these.

public static MvcHtmlString ActionImageLink(this HtmlHelper helper, string imageUrl, string altText, string actionName, string controller, object routeValues)
{
    var builder = new TagBuilder("img");
    builder.MergeAttribute("src", imageUrl);
    builder.MergeAttribute("alt", altText);
    var link = helper.ActionLink("[replaceme]", actionName, controller, routeValues);
    return new MvcHtmlString(link.ToHtmlString().Replace("[replaceme]", builder.ToString(TagRenderMode.SelfClosing)));
}
public static MvcHtmlString ActionImageLink(this AjaxHelper helper, string imageUrl, string altText, string actionName, string controller, object routeValues, AjaxOptions ajaxOptions)
{
    var builder = new TagBuilder("img");
    builder.MergeAttribute("src", imageUrl);
    builder.MergeAttribute("alt", altText);
    var link = helper.ActionLink("[replaceme]", actionName, controller, routeValues, ajaxOptions);
    return new MvcHtmlString(link.ToHtmlString().Replace("[replaceme]", builder.ToString(TagRenderMode.SelfClosing)));
}
link|improve this answer
feedback

The first solution is to use a helper static method DecodeLinkContent like the following:

DecodeLinkContent(Html.ActionLink<Home>(c => c.Delete(item.ID), "<span class=\"redC\">X</span>",new { Class = "none left"}))

DecodeLinkContent has to find first '>' and last '<' and has to replace the content with HttpUtility.Decode(content).

This solution is little bit a hack but I think it's the most easy.

link|improve this answer
feedback

Update for MVC3 using Templated Razor Delegates relies on T4Mvc,but brings so much power.

Based on various other answers on this page.

        public static HelperResult WrapInActionLink(this AjaxHelper helper,ActionResult result, Func<object,HelperResult> template,AjaxOptions options)
    {
        var link=helper.ActionLink("[replaceme]",result,options);
        var asString=link.ToString();
        var replaced=asString.Replace("[replaceme]",template(null).ToString());

        return new HelperResult(writer =>
        {
            writer.Write(replaced);
        });
    }

Allows:

@Ajax.WrapInActionLink(MVC.Deal.Details(deal.ID.Value),@<img alt='Edit deal details' src='@Links.Content.Images.edit_16_gif'/>, new AjaxOptions() { UpdateTargetId="indexDetails" })
link|improve this answer
feedback

Your Answer

 
or
required, but never shown