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!
feedback
|
|
From Stephen Walthe, from his Contact manger project
You can now type in your aspx file :
| |||||||||||||
feedback
|
|
Here's the easiest solution I've found:
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. | |||||||||||||||||
feedback
|
|
This is an MVC 3 update to Black Horus' answer:
You can now type in your .cshtml file :
| |||||||||
feedback
|
|
Another solution is to create your own extension method:
and as the last parameter is the enumeration LinkOptions
and then you can use it as follows:
I'll post whole description of this solution on my blog: http://fknet.wordpress.com/ | |||
|
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. | |||
|
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. | |||||
|
feedback
|
|
MVC3, Html.ActionImageLink and Ajax.ActionImageLink Thank you to all the other answers in helping me with these.
| |||
|
feedback
|
|
The first solution is to use a helper static method DecodeLinkContent like the following:
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. | |||
|
feedback
|
|
Update for MVC3 using Templated Razor Delegates relies on T4Mvc,but brings so much power. Based on various other answers on this page.
Allows:
| |||
|
feedback
|