gpt4 book ai didi

c# - 在 TableCell 中插入 DropDownList

转载 作者:太空狗 更新时间:2023-10-30 00:57:00 27 4
gpt4 key购买 nike

while (reader.Read())
{
TableRow r = new TableRow();
TableCell c = new TableCell();

c.Controls.Add(new LiteralControl(reader["Name"].ToString()));
r.Cells.Add(c);
Table1.Rows.Add(r);

TableCell c1 = new TableCell();

c1.Controls.Add(new LiteralControl(reader["RollID"].ToString()));
r.Cells.Add(c1);
Table1.Rows.Add(r);

}

我想为每一行添加另一个带有下拉列表的单元格。有人可以帮我解决这个问题吗?

最佳答案

你可以这样做......

DropDownList ddl = new DropDownList();
ddl.ID = "ddl";
ddl.Items.Add(new ListItem("Text", "Value")); // add list items
TableCell c2 = new TableCell();
c2.Controls.Add(ddl);
r.Cells.Add(c2);
Table1.Rows.Add(r);

关于c# - 在 TableCell 中插入 DropDownList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6267028/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com