How can I do something similar to Html.ActionLink() except place the generated link around an Image instead of just spitting out the link?
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. |
|||
|
|
|
Try something like this:
Hope this helps |
|||||||
|
|
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. |
|||
|
|
|
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 |
|||
|
|
|
more easy... change your code by:
|
||||
|
|