ASP.Net 对象数据源 - 数据绑定

发布于 2024-07-14 09:18:07 字数 44 浏览 9 评论 0原文

在页面生命周期中,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葬花如无物 2024-07-21 09:18:07

页面生命周期概述中,引用数据绑定事件:

此事件由数据绑定控件在包含控件(或 Page 对象)的 PreRender 事件之前引发,并标记将控件绑定到数据的开始。

关于 DataBound 事件:

此事件标志着数据绑定控件中数据绑定操作的结束。 在 GridView 控件中,所有行和任何子控件的数据绑定都是完整的。
使用此事件来格式化数据绑定内容或在依赖于当前控件内容的值的其他控件中启动数据绑定。

From the Page Life Cycle Overview, referring to the databinding event:

This event is raised by data-bound controls before the PreRender event of the containing control (or of the Page object) and marks the beginning of binding the control to the data.

And regarding the DataBound event:

This event marks the end of data-binding operations in a data-bound control. In a GridView control, data binding is complete for all rows and any child controls.
Use this event to format data bound content or to initiate data binding in other controls that depend on values from the current control's content.

把回忆走一遍 2024-07-21 09:18:07

正如 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文