单击按钮时,按钮的事件会在 page_load 之前触发吗?
当 asp.net 按钮被触发时,按钮的事件会在 page_load 和 init 和 pre_init 事件之前触发吗?
When an asp.net button is fired, will the button's event get fired before the page_load and init and pre_init events?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
http://msdn.microsoft.com/en-us/library/ms178472。 aspx
Page_Load 位于事件处理程序之前。
http://msdn.microsoft.com/en-us/library/ms178472.aspx
Page_Load goes before event handlers.
只需在不同的函数中设置一些断点,看看哪个函数首先触发。我想答案是否定的。
Just stick some breakpoints in the different functions and see which one fires first. I think the answer is no.
创建一个包含页面初始化、加载(也是 ispostback 的变体)、预渲染、卸载和控制事件的页面,并进行跟踪以查看它们何时全部触发 - 当您执行这些操作时,也比阅读它更容易记住。
Make a page with page init, load (also variations of ispostback), prerender, unload and control events and do a trace to see when they all fire off - easier to remember too when you do it as opposed to reading it.
Page_Load、init 和 pre_init 将在按钮接收任何用户输入之前发生,因此它肯定会在按钮因用户输入而触发任何事件之前发生。
Page_Load, init and pre_init will happen before the button can receive any user input, so it will definitely happen before the button can fire off any events as a result of user input.