I have following requirement,
The user need to generate textbox when he required to enter text in that.
<
When i Click on ADD button the textbox should generate dynamically & it have to place in the above location.
Like this i have 5 Add buttons in my page for every fields to add textboxes..

Jignesh TrivediPosted Jan 25, 2012, 5:37 AM
In ASPX
In Cs side.
TextBox t = new TextBox();
t.Text = "Jignesh";
test1.Controls.Add(t);
hope this help.