fadetoblack
Programmer
I know that I can cycle through the controls of a standard .aspx form using the following:
foreach (Control c in Page.Form.Controls) {
}
What do I use to find the controls of user controls on a master page?
foreach (Control c in Page.Form.Controls) {
}
What do I use to find the controls of user controls on a master page?