I'm dynamically creating some (about 20) textfields for a web form like this :
TextBox propValue = new TextBox();
propValue.Text = columnValue.ToString();
propValue.ID = columnName;
propHolder.Controls.Add(propValue);
Then, in another function, I need to get the values from each of them. Is there a way to get the values using the ID's I assigned ?