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