C# mvc 客製化 helper

  • 136
  • 0

C# mvc 客製化 helper

  1. namespace MvcTest.Helpers
  2. {
  3. public static class labelaa//開放、靜態 的類別
  4. {
  5. public static string Label123(this HtmlHelper helper, string text)//開放、靜態、的擴充方法
  6. {
  7.             return "<label>" + text + "</label>";
  8.         }
  9.     }
  10. }

http://demo.tc/post/459