c#中的动态文本框

本文关键字:文本 动态 | 更新日期: 2023-09-27 18:25:00

我有以下代码:

 string str = string.Empty;
 foreach (ListItem item in this.CheckBoxList1.Items)
    {
       if (item.Selected)
           {
              str += item.Value + "<br><br>";
              TextBox txt1 = new TextBox();
           }
    }
 lbl1.Text = str;

我想要的是,对于每个选中的数据,我都想要一个文本框。当我循环通过复选框List时,标签会获取我的值并显示它们,但文本框不会。我该怎么做?

c#中的动态文本框

foreach (ListItem item in this.CheckBoxList1.Items)
    {
       if (item.Selected)
           {
              str += item.Value + "<br><br>";
              TextBox txt1 = new TextBox();
              //name of your form should go here
               form1.Controls.add(txt1); 
               //plus you have to figure it out how to position textboxes on the page
           }
    }