I have a repeater control on an ASP.NET 2.0 web form.
As I understanding it, all of the page's data-bound controls fire their binding events somewhere in between the Page_Load and the Page_PreRender events.
However, my repeater's ItemDataBound event appears to be happening AFTER the PreRender event.
How is this so and is there any way I can access the page controls AFTER all the ItemDataBound events have fired?
Thanks in advance for any light shed.
Updates:
-The Repeater uses an ObjectDataSource with the DataSourceID declaritively set in the repeater control.
-The DataSource ID or object is not modified at all during the page lifecycle.