in c# windows app. genrate runtime multiple textbox in panel
how to generate a controls runtime and how to insert that generated data in database u and controls generates in panel ..please give code...thanks in advanced.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
dipak shahPosted Oct 4, 2013, 12:02 PM
Jignesh TrivediPosted Oct 4, 2013, 7:57 AM
Are u working on which technology ? asp.net or winform or wpf?
if you are looking for solution in ASP.net than
Put one pannel in you aspx page.
and add following code add text box with in panel
TextBox textBox = new TextBox();
textBox.ID = "txtDynamic";
textBox.Text = "";
Panel1.Controls.Add(textBox);
hope this will help you.