asp.net中的动态下拉列表

时间:2009-08-19 06:42:46

标签: c# asp.net drop-down-menu dynamic-controls

我在运行时单击一个按钮时创建了dropdownlist。我选择了另一个按钮从动态下拉列表中获取所选文本。当我尝试从下拉列表中检索所选文本时,它给出了一个名为object reference not error的错误,是我的代码。

TableRow tr;
    TableCell tc;
    DropDownList dp;
    TextBox txt;
    protected void Button1_Click(object sender, EventArgs e)
    {

        int no = int.Parse(TextBox1.Text);
        for (int i = 0; i < no; i++)
        {
            tr = new TableRow();
            tr.BorderStyle = BorderStyle.Groove;
            for (int j = 0; j < 1; j++)
            {
                tc = new TableCell();
                tc.BorderStyle = BorderStyle.Groove;
                dp = new DropDownList();
                //form1.Controls.Add(dp);
                txt = new TextBox();
                dp.Items.Add("hello");
                tc.Controls.Add(dp);
                tc.Controls.Add(txt);
                tr.Cells.Add(tc);
            }

            Table1.Rows.Add(tr);

        }
    }
    protected void Button2_Click(object sender, EventArgs e)
    {

        TextBox1.Text =((DropDownList)this.FindControl("dp")).SelectedItem.Text;


    }

2 个答案:

答案 0 :(得分:4)

你不能这样做。请记住,在每个请求中,您都会获得一个 new 页面对象,以及其中所有控件的 new 副本。您动态添加的任何控件必须每次都以相同的方式添加,否则它将不存在。

在这种情况下,单击按钮时添加一次。单击button2时,将生成一个请求,并创建一个不再包含下拉列表的新页面对象,因为它只会在button1处理程序中添加。

最简单的方法是将您的下拉列表正常添加到页面中,但只需将Visible设置为false即可。然后,当他们单击按钮1时,将Visible设置为true。这将确保您的下拉列表始终存在。

动态控件很棘手,应该尽可能避免,特别是如果你是ASP.Net的新手。

答案 1 :(得分:0)

实际上,我能够让它发挥作用..

我在创建表之前创建了一个数据集,然后:

   tc = new TableCell();
   dd= new DropDownList();
   ddl.ID = dd1;

   foreach (DataRow dr in dst.Tables[0].Rows)
   {
      ddl.Items.Add(new ListItem(dr["Text"].ToString(),dr["Value"].ToString()));
   }
   tcActions.Controls.Add(ddlActions);

我不是专家或其他什么,我只是啄它,直到我做它我想做的。