public static void ShowSecondary( this HtmlGenericControl control , string msg ) => control.ShowAlert(msg, AlertType.Secondary);
public static void ShowDanger( this HtmlGenericControl control , string msg ) => control.ShowAlert(msg, AlertType.Danger);
public static void ShowSucces( this HtmlGenericControl control , string msg ) => control.ShowAlert(msg, AlertType.Success);
public static void ShowWarning( this HtmlGenericControl control , string msg ) => control.ShowAlert(msg, AlertType.Warning);