Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to generate number of textboxs dynamically in asp.net webpage by using c# and how to store those data in a table... please send my the result...
Posted

1 solution

how to generate number of textboxs dynamically in asp.net webpage by using c#
C#
TextBox tb = new TextBox();
tb.ID = "someID";
somePanel.Controls.Add(tb);


Now, try it.

. please send my the result...
Here is what is expected of enquirers:
1. TRY first what you want to do! You may find that it's not that hard.
2. Formulate what was done by you that looks like an issue/not working.

Try them and tell if you face issues.
Members will be more than happy to help like this.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900