ASP.Net中未从静态类触发动态按钮

本文关键字:动态 按钮 静态类 Net ASP | 更新日期: 2023-09-27 18:29:34

我正在尝试制作一个动态表,它有几行,最后一行是一个加号按钮,它将添加一个新行。(为了简单起见,我只描述重要信息。)

我想到了这样的方法来实现它:

// .aspx code 
<li><asp:LinkButton ID="LM_Show" runat="server" Text="Show list" OnClick="Action"/></li>
<asp:PlaceHolder ID="infoTable" runat="server"></asp:PlaceHolder>
//CreateTable function
public void Clicked(object sender, EventArgs e){
    table();
}
public void table() {
    //Do stuff...
    //Screen variable is keeping track of which screen should be shown in .aspx
    infoTable.Controls.Add(CreateView.createTable<Employee>(screen, this.Context, table));
}
//Create the actual table 
public static Table createTable<T>(Screen screen, HttpContext context, Action method) where T : new() {
    //New table and make it stretch
    Table tb = new Table();
    tb.Width = Unit.Percentage(100);
    tb.Height = Unit.Percentage(100);
    //Gather list from session
    List<T> items = (List<T>)context.Session["list"];
    //Create table content based on the list
    for (int i = 1; i <= items.Count(); i++) {
        TableRow tr = new TableRow();
       //Foreach property create cells with content according to the property
       //Add these cells to the row
        tb.Rows.Add(tr);
    }
    //Create 1 final row which has a button to be able to add 1 row
    TableRow tr2 = new TableRow();
    TableCell tc = new TableCell();
    tr.Cells.Add(tc);
    //Create the Button
    Button button = new Button();
    button.Text = "+";
    //!!This is not getting triggered!!//
    button.Click += (s, e) => { 
        List<T> tempItems = (List<T>)context.Session["list"]; 
        tempItems.Add(new T()); 
        context.Session["list"] = tempItems; 
        //When a button is pressed, it gives a postback.
        //The table has to be rebuild over again with the newly added item
        method(); 
    };
    //!!This is not getting triggered!!//
    //Add the button
    tr2.Cells[0].Controls.Add(button);
    tb.Rows.Add(tr2);
    return tb;
}

任何关于代码或如何更好地完成代码的评论也非常受欢迎

ASP.Net中未从静态类触发动态按钮

如果使用jQueryAJAX并与web服务/方法通信以获取数据,则可以更容易地实现这一点。然而,它也可以在C#中实现。假设下面给出的代码部分不起作用,

//Add the button
tr2.Cells[0].Controls.Add(button);
tb.Rows.Add(tr2);

您可以尝试先将button添加到tc,然后将tc添加到行tr

tc.Controls.Add(button);
tr2.Cells.Add(tc);
tb.Rows.Add(tr2);

祝你好运!