このようなものを作成したい
<A href="#section2">Section Two</A>
ASP.Net MVC の Html.Helper を使用します。どうやってするの?
このようなものを作成したい
<A href="#section2">Section Two</A>
ASP.Net MVC の Html.Helper を使用します。どうやってするの?
そのために独自のヘルパーを追加できます。
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)