62,243
社区成员




HtmlTableRow row = new HtmlTableRow();
HtmlTableCell text1 = new HtmlTableCell();
DropDownList drop1 = new DropDownList();
//这里添加ID,但结果不是我赋值的这个,Name也自动有了,和ID一样:name="ctl00$cphContent$supportTypeParamTypeID"
drop1.ID = "supportTypeParamTypeID";
text1.Controls.Add(drop1);
row.Cells.Add(text1);