包含用户控件的 AJAX TabContainer
想知道这里是否有人可以提供帮助。 我有一个 AJAX 选项卡容器,其中有许多选项卡,每个选项卡都包含一个用户控件。当我从一个选项卡添加新项目时,除非发生回发,否则它不会反映在另一个选项卡的用户控件中。 (例如,第一个选项卡有一个列表视图,我在其中添加新记录,第二个选项卡有一个简单的表单,其中包含一个下拉列表,我希望其中包含从第一个选项卡添加的值)。 如何使选项卡容器从用户控件刷新其选项卡? 任何帮助将不胜感激。
谢谢, 阿里
Wondering if someone here can help.
I have an AJAX tabcontainer which has a number of tabs and each tab contains a user control. When I add a new item from one of the tabs, it is not reflected in the user control in another tab unless a postback occurs. (e.g. the first tab has a listview where I add a new record and the second has a simple form which contains a drop-down which I expect to contain value added from first tab).
How can I make the tabcontainer to refresh its tabs from a usercontrol?
Any help will be most appreciated.
Thanks,
Ali
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从第一个用户控件触发一个事件,以便页面可以处理此事件并告诉其他用户控件进行数据绑定
这是一个示例
You could fire an event from your first user control so that the page can handle this event and tell the other usercontrol to databind
Here is a example