我想创建像这样的东西
<A href="#section2">Section Two</A>
使用ASP.Net MVC的Html.Helper。怎么做?
答案 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)