I have a form that has a few similar controls and the parent contains the properties, but the child actually has the html controls. How could I setup my getters/setters using the "child" controls in the parent class? (Webforms - fyi)
I found the below via search, and what I'm looking for is the inverse
Edit:
I should have tried this early on, but instead found it "fun" to explain this crazy situation. The below is what worked @ 100%
Get
Return DirectCast(Page.FindControl("lblCASE_NUMBER"), HtmlContainerControl).InnerHtml
End Get