如何使用Html.Helper创建锚点href

时间:2013-01-23 07:33:40

标签: asp.net-mvc-4 anchor html-helper

  

可能重复:
  How to render plain HTML links in Asp.Net MVC loop?

我想创建像这样的东西

<A href="#section2">Section Two</A>

使用ASP.Net MVC的Html.Helper。怎么做?

1 个答案:

答案 0 :(得分:5)

您可以为此添加自己的帮助:

public static class HtmlHelpers
{
    public static string SectionLink(this HtmlHelper html, string URL, string display)
    {
        return String.Format("<a href=\"{0}\">{1}</a>", URL, display);
    }
}

你这样使用它:

@Html.SectionLink(section.Anchor, section.Name)