Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.