动态控件 - 清除容器中所有控件的替代方法

时间:2013-01-15 12:51:26

标签: c# asp.net dynamic-controls

我正在使用动态控件进行一些测试。代码如下:

ASPX页面

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 
            onselectedindexchanged="DropDownList1_SelectedIndexChanged">
            <asp:ListItem Value="0">Nothing</asp:ListItem>
            <asp:ListItem Value="1">Two buttons</asp:ListItem>
        </asp:DropDownList>
        <asp:Panel ID="Panel1" runat="server">
        </asp:Panel>
    </div>
    </form>
</body>
</html>

代码背后:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (ViewState["CreateDynamicButton"] != null)
        {
            CreateControls();
        }
    }
    protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        CreateControls();
    }

    void Button_Click(object sender, EventArgs e)
    {
        Button b = (Button)sender;

        Response.Write("You clicked the button with ID " + b.ID);
    }

    private void CreateControls()
    {
        if (DropDownList1.SelectedValue.Equals("1"))
        {
            Panel1.Controls.Clear();

            Button b1 = new Button();
            b1.ID = "b1";
            b1.Text = "Button 1";

            Button b2 = new Button();
            b2.ID = "b2";
            b2.Text = "Button 2";

            b1.Click += new EventHandler(Button_Click);
            b2.Click += new EventHandler(Button_Click);

            Panel1.Controls.Add(b1);
            Panel1.Controls.Add(b2);

            ViewState["CreateDynamicButton"] = true;
        }
    }
}

此代码可以正常工作,但正如您所见,我删除了Panel1.Controls中的所有控件,然后添加按钮,因为当我第二次选择创建它时,我会获得重复控件ID的执行。

我认为对于两个按钮,操作非常快,但是控件数量越多,精加工时间就越长。 在没有这种解决方法的情况下,你能否建议我在PostBack之后重新生成控件的更好方法?

2 个答案:

答案 0 :(得分:0)

首先,如果你试图删除控件(在这种情况下是按钮),你最好使用Dispose方法吗?清除控件面板将不会处理它,这将解释已经在使用的ID。无论面板中有多少控件,您都可以执行一个简单的循环来执行此操作;

foreach(Control control in Container)
{
  control.Dispose();
}

另外,为了创建按钮,我看到你只是将它们命名为btn1,btn2等等。你也可以在循环中做到这一点;

for(int i = 0; i >= yourInt; i++)
{
  Button b = new Button();
  b.ID = "b" + i;
  b.Text = "Button " + i;
}

}

答案 1 :(得分:0)

创建一个类变量private bool ControlsCreated = false;CreateControls方法中,然后检查

if (!ControlsCreated) {
    //your code to create controls
}

这可确保控件仅创建一次。如果以后需要重新创建控件(更改下拉列表值),只需清除容器并将ControlsCreated设置为false。