Hi Everyone, 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!
|
3
|
|
|
|
|
|
The answers to this question may help. |
||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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/ |
||
|
|
|
|
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. |
||||
|
|
|
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. |
||
|
|
From Stephen Walthe, from his Contact manger project
You can now type in your aspx file :
|
||
|
|
