Используйте вспомогательную функцию ImageExtensions
из Mvc3Futures \ Microsoft.Web.Mvc.dll.
Вы можете найти его в NuGet хранилище .
public static class ImageExtensions
{
public static MvcHtmlString Image(this HtmlHelper helper, string imageRelativeUrl);
public static MvcHtmlString Image(this HtmlHelper helper, string imageRelativeUrl, string alt);
public static MvcHtmlString Image(this HtmlHelper helper, string imageRelativeUrl, string alt, object htmlAttributes);
public static MvcHtmlString Image(this HtmlHelper helper, string imageRelativeUrl, object htmlAttributes);
public static MvcHtmlString Image(this HtmlHelper helper, string imageRelativeUrl, IDictionary<string, object> htmlAttributes);
public static MvcHtmlString Image(this HtmlHelper helper, string imageRelativeUrl, string alt, IDictionary<string, object> htmlAttributes);
public static TagBuilder Image(string imageUrl, string alt, IDictionary<string, object> htmlAttributes);
}