Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
似乎在 .aspx 中声明控件的顺序并不能保证它们呈现/加载/创建的顺序。
是否可以设置控件“渲染”的顺序?我的一些控制事件有副作用,这就是为什么......(在我的情况下,我有两个DetailsView控件,我需要确保ItemCreated一个总是在另一个之前被调用)。
DetailsView
ItemCreated
也许只有一种方法可以在一个事件中“等待”直到另一个事件被触发?
这实际上只是DataBind按所需顺序单独调用控件的问题,而不是默认为Page.DataBind.
DataBind
Page.DataBind