dynamic textboxs
in page load dynamically created textboxs with below code its working well, but im unable to retrieve textbox text using button event plz help me out on the same issue
for i = 1 to 5
dim txtBox as new TextBox
txtBox.ID = String.Format("txtBox{0}", i)
Panel1.Controls.Add(txtBox)
next
|