Asp.net 中的子控件
子控件存在时最早的事件是什么?
which is the earliest event when child control exists ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
子控件存在时最早的事件是什么?
which is the earliest event when child control exists ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
在页面生命周期中,您可以使用 OnInit 作为最早的事件。
但如果您指的是可以访问子控件的最早事件,
请调用 EnsureChildControls方法在事件开始时,那么就可以访问该控件的子控件了。 如果子控件未启动,它只需调用 CreateChildControls 方法并启动它们。
In page lifecycle you can use OnInit as the earliest event.
but if you mean the earliest event that you can access the child controls,
Call EnsureChildControls method at the beginning of the event, then you can access the child controls of the control. If child controls are not initiated, it simply calls the CreateChildControls methods, and initiates them.
Control_Init 事件。
Control_Init event.