每个 Web 控件是否只有一个不是从 System.Web.UI.WebControls 继承的唯一事件?

发布于 2024-09-15 15:16:15 字数 108 浏览 5 评论 0原文

我想知道这一点的原因是因为似乎 __doPostBack('controlId','eventarg') 引发指定控件的唯一事件,但我想知道如果该控件有多个唯一事件会发生什么。

The reason I want to know this is because it seems that __doPostBack('controlId','eventarg')
raises the unique event of the control specified, but I wonder what would happen if the control had multiple unique events.

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

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

发布评论

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

评论(1

天荒地未老 2024-09-22 15:16:15

它实际上会导致调用控件通过 IPostBackEventHandler 接口。然后控件可以检查参数并引发适当的事件。某些控件将忽略该参数并仅引发 Click,但在 GridView 上,它可能会触发 PageIndexChanging、Sorting 或 SelectedIndexChanging 等事件。

It actually causes a call to the RaisePostBackEvent method which the control exposes through the IPostBackEventHandler interface. The control can then check the argument and raise an appropriate event. Some controls will ignore the argument and just raise Click, but on GridView it could trigger events like PageIndexChanging, Sorting, or SelectedIndexChanging.

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