Ejemplo n.º 1
0
 public static MvcHtmlString ActionLinkImage(this HtmlHelper htmlHelper, string imageLocation, string altTag, string actionName, string controllerName, object routeValues, object htmlAttributes)
 {
     return htmlHelper.ActionLinkImage(imageLocation, altTag, actionName, controllerName, new RouteValueDictionary(routeValues), new RouteValueDictionary(htmlAttributes));
 }
Ejemplo n.º 2
0
 public static MvcHtmlString ActionLinkImage(this HtmlHelper htmlHelper, string imageLocation, string altTag, string actionName)
 {
     return htmlHelper.ActionLinkImage(imageLocation, altTag, actionName, null, new RouteValueDictionary(), new RouteValueDictionary());
 }
Ejemplo n.º 3
0
 public static MvcHtmlString ActionLinkImage(this HtmlHelper htmlHelper, string imageLocation, string altTag, string actionName, RouteValueDictionary routeValues, IDictionary<string, object> htmlAttributes)
 {
     return htmlHelper.ActionLinkImage(imageLocation, altTag, actionName, null, routeValues, htmlAttributes);
 }