Exemple #1
0
 public static SelectTag EmptyOption(this SelectTag htmlTag, string text = "")
 {
     htmlTag.InsertFirst(new HtmlTag("option").Value(string.Empty).Text(text));
     return(htmlTag);
 }