单击按钮时,按钮的事件会在 page_load 之前触发吗?

发布于 2024-08-25 21:39:39 字数 68 浏览 2 评论 0原文

当 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 技术交流群。

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

发布评论

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

评论(4

只为一人 2024-09-01 21:39:39

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.

二智少女猫性小仙女 2024-09-01 21:39:39

只需在不同的函数中设置一些断点,看看哪个函数首先触发。我想答案是否定的。

Just stick some breakpoints in the different functions and see which one fires first. I think the answer is no.

笙痞 2024-09-01 21:39:39

创建一个包含页面初始化、加载(也是 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.

红颜悴 2024-09-01 21:39:39

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.

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