Esempio n. 1
0
 public HtmlTag Cell(string text) => HtmlTagExtensions.Text(new HtmlTag("td", this), text);
Esempio n. 2
0
 public HtmlTag Header(string text) => HtmlTagExtensions.Text(new HtmlTag("th", this), text);
Esempio n. 3
0
 private static HtmlTag MakeOption(string display, object value) => HtmlTagExtensions.Attr(HtmlTagExtensions.Text(new HtmlTag("option"), display), "value", value);