简体   繁体   中英

Inserting DropDownList in a TableCell

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);

}

i want to add another cell with a dropdownlist for every row.Could any one sort me out with this issue?

You can do like...

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);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM