使用 HTTP 模块获取哪个控件引发事件
如何使用 Http 模块确定单击页面中的哪个控件?假设我们有一个带有 3 个按钮的页面。
谢谢
How I can determine which control in a page clicked using Http Modules?Consider we have a page with 3 button.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以访问
HttpContext.Current.Request
,那么您应该检查Form['__EVENTTARGET']
元素以查看哪个控件导致了回发。然而,这不适用于常规按钮,因为它们呈现为简单的。幸运的是,它们被添加为发布数据的一部分,因此您可以迭代表单元素,并且您找到的按钮(通过其 ID)是导致回发的按钮。
If you can get access to
HttpContext.Current.Request
then you should check theForm['__EVENTTARGET']
element to see which control has caused the postback. This however will not work for regular buttons because they are rendered as simple<input type="submit">
. Luckily they are added as part of the post data so you can iterate over the Form elements and the button you find (by its ID) is the button that caused the postback.