Example #1
0
 public static void ShowSecondary(
     this HtmlGenericControl control
     , string msg
     ) => control.ShowAlert(msg, AlertType.Secondary);
Example #2
0
 public static void ShowDanger(
     this HtmlGenericControl control
     , string msg
     ) => control.ShowAlert(msg, AlertType.Danger);
Example #3
0
 public static void ShowSucces(
     this HtmlGenericControl control
     , string msg
     ) => control.ShowAlert(msg, AlertType.Success);
Example #4
0
 public static void ShowWarning(
     this HtmlGenericControl control
     , string msg
     ) => control.ShowAlert(msg, AlertType.Warning);