具有路由值的助手的C#扩展方法

时间:2012-11-26 10:42:47

标签: c# asp.net-mvc asp.net-mvc-routing html-helper

我正在尝试使用图片为ActionLink助手制作扩展方法。

这是我的扩展方法:

public static class MyHelpers
    {
        public static string ActionLinkWithImage(this HtmlHelper html, string imgSrc, string actionName)
        {
            var urlHelper = new UrlHelper(html.ViewContext.RequestContext);

            string imgUrl = urlHelper.Content(imgSrc);
            TagBuilder imgTagBuilder = new TagBuilder("img");
            imgTagBuilder.MergeAttribute("src", imgUrl);
            string img = imgTagBuilder.ToString(TagRenderMode.SelfClosing);

            string url = urlHelper.Action(actionName);

            TagBuilder tagBuilder = new TagBuilder("a")
            {
                InnerHtml = img
            };

            tagBuilder.MergeAttribute("href", url);

            return tagBuilder.ToString(TagRenderMode.Normal);
        }
    }

我试图像这样使用它:

@Html.ActionLinkWithImage("Images/del.png", "Delete", new { id = item.ItemID});

但我的扩展方法没有“路由值”。我该如何实现呢?

2 个答案:

答案 0 :(得分:3)

像这样:

public static string ActionLinkWithImage(this HtmlHelper html, string imgSrc, string actionName, object routeValues)
    {

    //Your code ...

    string url = urlHelper.Action(actionName, routeValues);

    }

答案 1 :(得分:2)

将对象参数添加到方法

, object routeData) 

并将其传递给UrlHelper

new UrlHelper(new RequestContext(html.ViewContext.HttpContext, routeData))