开发者

insert text between 2 controls

开发者 https://www.devze.com 2022-12-12 09:53 出处:网络
I want insert \":\" between 2 dropdownlist in a cell. tableCell.Controls.Add(DropDownListOraInizio); tableCell.Controls.Add(Dr开发者_开发技巧opDownListMinutoInizio);

I want insert ":" between 2 dropdownlist in a cell.

tableCell.Controls.Add(DropDownListOraInizio);            
tableCell.Controls.Add(Dr开发者_开发技巧opDownListMinutoInizio);

How can i do?

thanks


tableCell.Controls.Add(DropDownListOraInizio);    
tableCell.Controls.Add(new LiteralControl(":"));      
tableCell.Controls.Add(DropDownListMinutoInizio);
0

精彩评论

暂无评论...
验证码 换一张
取 消