How can I do something similar to Html.ActionLink() except place the generated link around an Image instead of just spitting out the link?
|
up vote
8
down vote
favorite
4
|
|||
|
|
|
up vote
13
down vote
accepted
|
Obviously, if you do this more than once, write a helper for it. And fill in the other attributes of img/a. But this should give you the general idea. |
||
|
|
|
up vote
5
down vote
|
Try something like this:
Hope this helps |
||||||
|
|
up vote
1
down vote
|
I liked eu-ge-ne's approach, but wanted a strongly typed version. After some digging I stole his and made it into a strongly-typed HtmlHelper extension. You can find my version on my blog at the link above. Afterwards (always the case) I found another implementation here that also looks really good (although I haven't tried it). It definately looks more complete in implementation than mine. |
||
|
|
|
up vote
0
down vote
|
You can create htmlhelper which can return image with link... As parameters you will pass to htmlhelper values like image path and link and in htmlhelper you will use StringBuilder to format html of that linked image properly... cheers |
||
|
|