开发者

Calling Html.ActionLink in a custom HTML helper

I am designing a custom HTML helper and I would like to execute Html.ActionLink to provide dynamic URL generation.

    namespace MagieMVC.Helpers
    {
        public static class HtmlHelperExtension
        {
            public static string LinkTable(this HtmlHelper helper, List<Method> items)
            {
                string result = String.Empty开发者_开发技巧;

                foreach (Method m in items)
                {
                    result += String.Format(
                        "<label class=\"label2\">{0}</label>" +
                        System.Web.Mvc.Html.ActionLink(...) +
                        "<br />",
                        m.Category.Name,m.ID, m.Name);
                }

                return result;
            }


  }
}

Unfortunately Html.ActionLink is not recognized in this context whatever the namespace I have tried to declare.

As a generic question, I would like to know if it is possible to use any existing standard/custom Html helper method when designing a new custom helper.

Thanks.


Don't you have the helper already?

helper.ActionLink("text", "actionName");

Don't forget to include using System.Web.Mvc.Html namespace.

And yes, you could use the existing extension methods as long as you included the necessary namespaces.


FYI, for MVC 3, I found the ActionLink here:

System.Web.Mvc.Html.LinkExtensions.ActionLink(text, action, controller).ToHtmlString();
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜