在表的每一行上添加一个按钮

时间:2013-02-20 11:40:52

标签: c# asp.net

我目前正在寻找一种方法在表格的每一行上插入一个按钮(请注意这是一个定期更改的动态表格),此按钮将用于删除表格中的行 - 我已经尝试使用此方法在每一行上添加一个按钮:

            foreach (string instrument in splitInstrumentList)
            {
                TableRow r = new TableRow();
                r.Cells.Add(new TableCell());
                Button deleteButton = new Button();

                string instrumentString = instrument.ToString();

                if (instrumentString.Contains(","))
                {
                    instrumentString.Replace(",", string.Empty);
                }

                if (instrumentString.Length > 0 && string.IsNullOrEmpty(instrumentString))
                {
                    r.Cells[0].Text = instrumentString;

                    this.instrumentTable.Rows.Add(r);
                    deleteButton.ID = "deleteButton";
                    deleteButton.Text = "Delete";
                    instrumentTable.Controls.Add(deleteButton);

                }
            }

但是我不能这样做,因为Table无法使用我应该实现的子类型Button ..

1 个答案:

答案 0 :(得分:2)

您需要在行的单元格中添加按钮,目前您正在将该按钮添加到表格本身。您应该创建一个新的Cell,然后将Button添加到单元格中,稍后将单元格添加到行中。

TableCell cell = new TableCell();
cell.Controls.Add(deleteButton);
r.Cells.Add(cell);

在将按钮单击事件添加到单元格之前,您还应该注册一个事件,然后执行删除操作。