简体   繁体   中英

Dynamically recreating controls on postback for each row of table (ASP.NET/C#)

For every row in my 'table' I am manually creating, there must be a LinkButton to delete a database row that matches a column in the table. Because no 2 controls can have the same name, I've had to use a GUID to name them so they're all unique.

Problem is, right now when I click Delete, the page posts back with no changes, but I've been told that I need to recreate the controls - but how do I recreate them in Page_Load when their ID's are randomly generated? Here's my code:

 Table table = new Table();
            table.GridLines = GridLines.None;
            //table.BorderWidth = 1;
            //table.BorderColor = (System.Drawing.Color)conv.ConvertFromString("black");
            table.Width = Unit.Percentage(100);
            table.GridLines = (GridLines)3;

            TableHeaderRow header = new TableHeaderRow();
            header.BackColor = (System.Drawing.Color)conv.ConvertFromString("#EDEDED");
            foreach (string header2 in new string[] {"", "Quantity", "Rate", "Description", "Nominal Code", "Subtotal" })
            {
                TableCell cell = new TableCell();
                cell.Text = header2;
                header.Cells.Add(cell);
            }

            table.Rows.Add(header);

            var data = (from s in dc.InvoiceItems where s.invoiceid.ToString() == Request.QueryString["id"].ToString() select s);
            foreach (var x in data)
            {

                TableRow row = new TableRow();
                if (x.invoicetext == null)
                {
                    decimal total;
                    try
                    {
                        total = (decimal)x.rate * (decimal)x.quantity;
                    }
                    catch
                    {
                        total = 0;
                    }
                    int i = 0;
                    foreach (string columnData in new string[] {x.id.ToString(), x.quantity.ToString(), x.rate.ToString(), x.description, x.nominalcode, total.ToString("N2") })
                    {
                        TableCell cell = new TableCell();
                        {
                            if (i == 0)
                            {
                                LinkButton lnkdel = new LinkButton();
                                lnkdel.Text = "Delete";
                                lnkdel.ID = "lnkDel" + Guid.NewGuid();

                                 if (alloweditting == false)
                                {
                                    lnkdel.Enabled = false;
                                }
                                 lnkdel.Font.Bold = false;
                                lnkdel.CommandArgument = x.id.ToString();

                                lnkdel.Command += (s, e2) =>
                                {
                                    using (SqlConnection conn = new SqlConnection(connection))
                                    {
                                        SqlCommand comm = new SqlCommand("DELETE FROM InvoiceItem WHERE id = @id", conn);
                                        comm.Parameters.AddWithValue("@id", e2.CommandArgument);
                                        conn.Open();
                                        try
                                        {
                                            comm.ExecuteNonQuery();
                                        }
                                        catch (Exception ex)
                                        {
                                            Response.Write(ex);
                                        }
                                    }
                                };

                                cell.Controls.Add(lnkdel);
                                i++;
                            }
                            else
                            {
                                cell.Text = columnData;
                            }


                        }

                        row.Cells.Add(cell);
                    }



                    runningtotal = runningtotal + total;

                }
                else
                {
                    int i = 0;

                    foreach (string columnData in new string[] {x.id.ToString(), x.invoicetext })
                    {
                        TableCell cell = new TableCell();

                            if (i == 0)
                            {
                                LinkButton lnkdel = new LinkButton();
                                lnkdel.Text = "Delete";
                                lnkdel.ID = "lnkDel" + Guid.NewGuid();

                                 if (alloweditting == false)
                                {
                                    lnkdel.Enabled = false;
                                }
                                 lnkdel.Font.Bold = false;
                                lnkdel.CommandArgument = x.id.ToString();
                                rowid = lnkdel.CommandArgument;
                                lnkdel.Command += (s, e2) =>
                                {
                                    using (SqlConnection conn = new SqlConnection(connection))
                                    {
                                        SqlCommand comm = new SqlCommand("DELETE FROM InvoiceItem WHERE id = @id", conn);
                                        comm.Parameters.AddWithValue("@id", rowid);
                                        conn.Open();
                                        try
                                        {
                                            comm.ExecuteNonQuery();
                                        }
                                        catch (Exception ex)
                                        {
                                            Response.Write(ex);
                                        }
                                    }
                                };

                                cell.Controls.Add(lnkdel);
                                i++;
                            }
                            else
                            {
                                cell.Text = columnData;
                                cell.ColumnSpan = 5;
                            }
                            row.Cells.Add(cell);

                        }

                }

                switch (x.formatoptions)
                {
                    case 1:
                        row.ForeColor = (System.Drawing.Color)conv.ConvertFromString("black");
                        row.Font.Bold = false;
                        break;
                    case 2:
                        row.ForeColor = (System.Drawing.Color)conv.ConvertFromString("black");
                        row.Font.Bold = true;
                        break;
                    case 3:
                        row.ForeColor = (System.Drawing.Color)conv.ConvertFromString("red");
                        row.Font.Bold = false;
                        break;
                    case 4:
                        row.ForeColor = (System.Drawing.Color)conv.ConvertFromString("red");
                        row.Font.Bold = true;
                        break;
                }
                table.Rows.Add(row);
            }

            TableFooterRow row2 = new TableFooterRow();
            TableCell cell2 = new TableCell();
            cell2.Text = "<span style\"text-align: right; width: 100%;\">Total = <b>" + runningtotal.ToString("N2") + "</b></span>";
            cell2.ColumnSpan = 6;
            row2.Cells.Add(cell2);
            table.Rows.Add(row2);

            var update = (from s in dc.Invoices where s.id.ToString() == Request.QueryString["id"] select s).Single();
            update.total = runningtotal;

            dc.SubmitChanges();
            datatable.Controls.Clear();
            datatable.Controls.Add(table);
        }

Don't use a GUID. Make the ID value from the rowid, so it's a repeatable value like "row_784".

For example, instead of

lnkdel.ID = "lnkDel" + Guid.NewGuid();

use

lnkdel.ID = "lnkDel" + x.id.ToString();

You need to create them in Page_Init, not Page_Load. You should only need to move the call to the code that creates your table to Page_Init, and everything should work as you expect.

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