tags:

views:

43

answers:

1

Hi

I want to display the ImageLink on my ASP.NET MVC Page.

HTML.ImageLink is not showing up.

Did i miss any libraries?

Appreciate your response.

Thanks

+3  A: 

There isn't an ImageLink extension in MVC proper. You might find some ideas on these questions:

http://stackoverflow.com/questions/341649/asp-net-mvc-ajax-actionlink-with-image http://stackoverflow.com/questions/675319/is-there-an-asp-net-mvc-htmlhelper-for-image-links

or you could do something simple like:

<a href='<%= Url.Action( "action", "controller" ) %>'>
   <img src='<%= Url.Content( "~/content/images/img.png" ) %>' alt="Action" />
</a>
tvanfosson