Example #1
0
 public static string ActiveTab(this HtmlHelper helper, string activeController, string activeAction, string cssClass)
 {
     return(helper.ActiveTab(activeController, new string[] { activeAction }, cssClass));
 }
Example #2
0
 public static string ActiveTab(this HtmlHelper helper, string activeController, string[] activeActions)
 {
     return(helper.ActiveTab(activeController, activeActions, DefaultCssClass));
 }