简体   繁体   中英

dynamic textbox in c#

I have the following code:

 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;

What I want is for each data checked I want to have a textbox. When I loop through the checkbox List the label takes my values and display them but the textbox not. How can I do it?

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
           }
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM