My page, Default.aspx inherits form BasePage.cs.
In the base page I am trying to find the control Label1 that is actually in Default.aspx.
var labelControl = (TextBox)Page.FindControl("Label1");
However, this is always coming back as null. Can I find controls of other pages through the base page?