User-348500580 posted
If im using master pages with contentplaceholders, how do i get a reference to the controls within the form ? The following code doesnt work
foreach (Control c in this.Controls)
{
if (c is TextBox)
{
Response.write(((TextBox)c).text);
}
}