从表中删除记录

时间:2012-06-16 10:52:21

标签: asp.net

enter image description here

在上面的照片中,我有一个表格,其中包含在表格中动态添加的用户列表。 我希望当我点击红十字图像按钮时,相应的用户将从数据库中删除。

以下是填充表格的代码:

/****** Filling the originators table ********/
          string[] oa1 = originator;
            for (int i = 0; i < oa1.Length; i++)
            {
                TableRow row = new TableRow();
                users_table.Rows.Add(row);
                for (int colCount = 0; colCount < 4; colCount++)
                {
                    TableCell cell = new TableCell();
                    row.Cells.Add(cell);

                    if (colCount == 0)
                    {
                        cell.Controls.Add(new LiteralControl(oa1[i]));
                    }
                    else if (colCount == 1)
                    {
                        cell.Controls.Add(new LiteralControl("|"));
                    }
                    else if (colCount == 2)
                    {
                        LLKB userInfo = new LLKB();
                        cell.Controls.Add(new LiteralControl(userInfo.InfoGetter(oa1[i].Trim(), "name")));
                    }
                    else if (colCount == 3)
                    {
                        ImageButton btn = new ImageButton();
                        btn.ImageUrl = "img/DeleteRed.png";
                        btn.ID = oa1[i] + "_" + i;
                        btn.Click += new ImageClickEventHandler(delete_originator);
                        cell.Controls.Add(btn);
                    }
                }
            }

以下是显示删除的方法:

public void delete_originator(object sender, ImageClickEventArgs e)
    {
        //some code here
    }

那么,你建议我在删除方法中写什么?

或者如果您有其他想法......

1 个答案:

答案 0 :(得分:0)

你应该清空表并重新创建表并获得用户名分割图像按钮ID 通过'_',所以在循环中当该用户名出现时添加continue语句。 删除事件中的一些事情:

string Username=((imagebutton)sender).ID.toString().tosplit('_')[0];