ASP.Net 对象数据源 - 数据绑定
在页面生命周期中,ASP.Net 对象数据源何时绑定来自指定数据源的数据?
At what point does a ASP.Net Object Data Source bind data, from the specified data source, in the page life cycle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从页面生命周期概述中,引用数据绑定事件:
关于 DataBound 事件:
From the Page Life Cycle Overview, referring to the databinding event:
And regarding the DataBound event:
正如 Joel 所说,绑定发生在 PreRender 中。 如果您真的感兴趣,您可以查看 BaseDataBoundControl.OnPreRender,您将看到负责此操作的代码。
As Joel stated, binding happens in PreRender. If your really interested you can take a look at BaseDataBoundControl.OnPreRender and you'll see the code that is responsible for this.