0

我有一些面板说 id="controlPanel" ,在这个面板里面我有一个表说 id ="controlTable" ,

在同一页面中的某些地方我有一个按钮,单击此按钮后,我想在表格中添加一个包含 TextField 的表格行,但我不知道谁来获取该表格...

    private Panel GetRightCellTemplate()
    {
        var panel = new Panel();
        panel.ID = "contrlPanel";
        panel.Width = 835;
        panel.Height = 300;
        panel.BorderWidth = 1;
        var tab = new Table();
        tab.ID = "controlTable";
        panel.Controls.Add(tab);
        return panel;
    }

现在我有一个按钮点击方法

    protected void lnkCreateControl_Click(object sender, EventArgs e)
    {
        var tr=new TableRow();
        var ts = new TableCell();
        var txtBox = new TextBox { Width = 120, ID = "firstText" };
        ts.Controls.Add(txtBox);
        tr.Cells.Add(ts);


    }

我想动态地将这个'tr'添加到上面的面板中,帮帮我

4

0 回答 0