I'm dynamically loading user controls into a place holder, which is working fine, but the properties I've created aren't available.
Do I need to do something else to expose them?
Thanks in advance for the help!
Code:
Control avgRateControl = (Control)Page.LoadControl("_controls/AverageRates.ascx");
phRatesList.Controls.Add(avgRateControl);
avgRateControl.hotelList = getHotelRates;
avgRateControl.searchStructure = searchStructure;
Do I need to do something else to expose them?
Thanks in advance for the help!