如何从 MasterPage 触发 UpdatePanel 更新?
我在动态加载的 UserControl
中有一个 UpdatePanel
,它位于 TabContainer
的 TabPanel
中。是否可以在标记中指定 MasterPage
中的 asp:LinkButton
作为 UpdatePanel
的触发器?
I have an UpdatePanel
in a dynamically loaded UserControl
, which is in a TabPanel
of a TabContainer
. Is it possible to specify in markup an asp:LinkButton
in the MasterPage
as an UpdatePanel
s trigger?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以动态添加
AsyncPostBackTrigger
或PostBackTrigger
以下是如何执行此操作:
编辑: 如果控件位于母版页中,则首先您需要找到LinkButton。
You can dynamically add a
AsyncPostBackTrigger
orPostBackTrigger
Here is how can you do this:
Edit: If the control is in a Master Page then first you need to find the LinkButton.