タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

Razorに関するmapserver2007のブックマーク (2)

  • Templated Razor Delegates

    David Fowler turned me on to a really cool feature of Razor I hadn’t realized made it into 1.0, Templated Razor Delegates. What’s that? I’ll let the code do the speaking. @{ Func<dynamic, object> b = @<strong>@item</strong>; } <span>This sentence is @b("In Bold").</span> That could come in handy if you have friends who’ll jump on your case for using the bold tag instead of the strong tag because i

    Templated Razor Delegates
    mapserver2007
    mapserver2007 2016/01/20
    very nice.
  • Razorテンプレートで柔軟で安全なヘルパーを作る - Mayushiki

    このエントリーはOne ASP.NET Advent Calendar 2013の16日目です。 現在ASP.NETをお使いのほぼ100%の方がASP.NET Web PagesかASP.NET MVCでRazorテンプレートを利用していると思います。そのRazorテンプレートにはヘルパーと呼ばれているHTML片を切り出してメソッドのようにして呼び出し、再利用できるような仕組みがあります。 まあ最近のテンプレートエンジンならヘルパー機能は大体ついているような気がしますが、例えばRazorでa要素でリンクを生成するヘルパーを作るとするとこんな感じになります。 @* ヘルパーの定義 *@ @helper Link(string content, string url) { <a href="@url">@content</a> } @* ヘルパーの呼び出し *@ @Link("リンク文字列",

    Razorテンプレートで柔軟で安全なヘルパーを作る - Mayushiki
  • 1