Hi Guys im new here. My question is on Dynamic controls. I have built my controls dynamically like this
Dim intCount as integer
For intCount = 1 to 10 then
dim MyTextBox as new TextBox
MyTextBox.Id="txtbox"
PlaceHolder.Controls.Add(MyTextBox)
Next
as you can see this code creates 10 textboxes. I need to use this textboxes to insert records into the database. Please help me out
Dim intCount as integer
For intCount = 1 to 10 then
dim MyTextBox as new TextBox
MyTextBox.Id="txtbox"
PlaceHolder.Controls.Add(MyTextBox)
Next
as you can see this code creates 10 textboxes. I need to use this textboxes to insert records into the database. Please help me out