C# – Shouldn’t Bind() pass child control’s values to GridView before Page.PreRender

asp.netcgridviewnetviewstate

For controls such as the GridView, DetailsView, and FormView controls, data-binding expressions are resolved automatically during the control's PreRender event

But doesn’t data source control perform updates prior to Page.PreRender event? Meaning, shouldn’t Bind() pass child control’s values to GridView ( so they can be passed to data source control as parameters ) before data source control updates the data source, thus before Page.PreRender event?

thanx

Best Answer