I have a form that receives an amount of TextBox that should be instantiated, the page then generates the textboxes, however I do not know how I can get the values.
hd = Request.QueryString["qtHD"];
mem = Request.QueryString["qtMem"];
hdnum = Convert.ToInt16(hd);
while (hdnum >= 1)
{
text1 = new TextBox();
String txtBox = "txtTamHD" + hdnum.ToString();
text1.ID = txtBox;
form1.Controls.Add(text1);
hdnum--;
}