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

Posted by SourceC on Stack Overflow See other posts from Stack Overflow or by SourceC
Published on 2009-04-11T21:14:19Z Indexed on 2010/05/26 23:11 UTC
Read the original article Hit count: 566

Filed under:
|
|
|
|

hello,

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

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET