I have a custom control that own a property. Inside this custom control OnInit method, it utilities this property to do some other job.
So in page side, I initialize this custom control and set its property in Page_Init method. But the custom control's Oninit method is called earlier than the Page_Init method, which means I never get the right property value in OnInit method. So what is the right place to set up the custom control's property value from page code behind side?
Thanks