I have defined a Composite control which contains a different number of child controls. One of these is a label that contains the number of pages for a table outside of the composite control. Its text is build using an int property inside the composite control. This value is updated everytime the table's data source is performing a select command, or whenever the table is filtered. The problem is that immediatly after postback, the changed value is not the one that has been drawn on the page. From what I can figure, the value updating occurs after the Page_Load method, so the children are already drawn before value is being updated. Is there any way I can force the value to be updated before Page_Load is being called, or to force the redraw of the composite control or label to reflect the change of value?
Thanks, Alex