ASP.Net如何确保内部绑定控件的正确绑定顺序?

发布于 2024-09-15 14:19:28 字数 343 浏览 6 评论 0原文

如果我有这样的事情:

<asp:Repeater DataSource='<%# new List<string>() { 'Tom', 'Dick', 'Harry' } %>' Visible='<%# DataTime.Now.Days == 1 %>' runat="server">

.Net 如何确定绑定的顺序?在该示例中,它需要绑定两次——它必须将列表和表达式中的布尔值绑定到中继器...然后再次绑定以循环遍历它?

一般来说,我只是不明白 ASP.Net 如何确定正确的绑定顺序。这些绑定实际上什么时候发生在页面生命周期中?

If I have something like this:

<asp:Repeater DataSource='<%# new List<string>() { 'Tom', 'Dick', 'Harry' } %>' Visible='<%# DataTime.Now.Days == 1 %>' runat="server">

How does .Net determine the order of binding? In that example, it needs to bind twice -- it has to bind the List and the boolean from the expression to a Repeater...which it then binds again to loop through it?

In a general sense, I just don't understand how ASP.Net determines the correct binding order. And when do these binds actually occur in the page lifecycle?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文