Reputation: 12455
I want insert ":" between 2 dropdownlist in a cell.
tableCell.Controls.Add(DropDownListOraInizio);
tableCell.Controls.Add(DropDownListMinutoInizio);
How can i do?
thanks
Upvotes: 0
Views: 80
Reputation: 421978
tableCell.Controls.Add(DropDownListOraInizio);
tableCell.Controls.Add(new LiteralControl(":"));
tableCell.Controls.Add(DropDownListMinutoInizio);
Upvotes: 4