60: Page.LoadComplete event no longer causes System.Web.UI.WebControls.EntityDataSource control to invoke data binding
Edge
4.5
Available
The Page.LoadComplete
event no longer causes the System.Web.UI.WebControls.EntityDataSource control to invoke data binding for changes to create/update/delete parameters.
This change eliminates an extraneous trip to the database, prevents the values of controls from being reset, and produces behavior that is consistent with other data controls, such as SqlDataSource and ObjectDataSource.
This change produces different behavior in the unlikely event that applications rely on invoking data binding in the Page.LoadComplete
event.
- Quirked
- Build-time break
If there is a need for databinding, manually invoke databind in an event that is earlier in the post-back.
- Investigate applicable APIs
ASP.NET