asp.net-mvc – 是否有一个ASP.NET MVC HtmlHelper的图像链接?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 是否有一个ASP.NET MVC HtmlHelper的图像链接?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Html.RouteLink()HtmlHelper适用于文本链接.但是,连接图像的最佳方式是什么?

解决方法

这里是我的,它的核心功能使一些重载
public static string ImageLink(this HtmlHelper htmlHelper,string imgSrc,string alt,string actionName,string controllerName,object routeValues,object htmlAttributes,object imgHtmlAttributes)
    {
        UrlHelper urlHelper = ((Controller)htmlHelper.ViewContext.Controller).Url;
        string imgtag = htmlHelper.Image(imgSrc,alt,imgHtmlAttributes);
        string url = urlHelper.Action(actionName,controllerName,routeValues);



        TagBuilder imglink = new TagBuilder("a");
        imglink.MergeAttribute("href",url);
        imglink.InnerHtml =imgtag;
        imglink.MergeAttributes(new RouteValueDictionary(htmlAttributes),true);

        return imglink.ToString();

    }
原文链接:https://www.f2er.com/aspnet/250936.html

猜你在找的asp.Net相关文章