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?
Updates:
The Repeater uses an
ObjectDataSource
with theDataSourceID
declarative set in the repeater control.The DataSource ID or object is not modified at all during the page life-cycle.