views:

92

answers:

1

I was recently introduced to the HTMLhelper class....along with MVC in general.

Does MVC, or the HtmlHelper class give any alternates for image links...and static links? For example, if I want to display an image on a webpage, do I still have to do the traditional href tag?

I.e. <img src='/Content/Images/mypic.jpg' />

or is there a better way to do it via MVC and/or HtmlHelper class. I thought there may be a more dynamic linking approach that the HTMLhelper class may offer.

Thank You.

+1  A: 

It is relatively easy to write one.

Darin Dimitrov