ASPxCallBackPanel 控件中的 Asp.Net 向导
我使用 ASPxPopUpControll,其中有 ASPxCallBack 面板。这个 CallbackPanel 嵌入在那里,因为我希望有基于回调的解决方案,尽管每次都重新加载页面。
在此 CallBackPanel 中,我嵌入了 asp:Wizard 控件。
我想要实现的是在单击此向导中的下一个上一个等按钮后摆脱回发。
有什么提示吗?
也许还有其他方法可以创建漂亮的向导而无需任何回发?
谢谢你的帮助
Im using ASPxPopUpControll in which I have ASPxCallBack panel. THis CallbackPanel was embeded there because I wanted to have solution based on callbacks despite of reloading page each time.
In this CallBackPanel I've embeded asp:Wizard control.
What I want to achive is get rid of postbacks after clicking next previous etc buttons in this wizzard.
Any hints?
Maybe there is other way to create nice wizard without any postbacks ?
thanks for help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ASPxCallbackPanel 无法像 MS UpdatePanel 那样拦截回发并将其“转换”为回调。因此,一个可能的解决方案是用 MS UpdatePanel 替换 ASPxCallbackPanel 并使用其中的向导。另一种解决方案是使用 ASPxPageControl,将所有必需的控件放置在其页面中并手动管理它们。
The ASPxCallbackPanel cannot intercept postbacks and "convert" them to callbacks as the MS UpdatePanel does this. So, a possible solution is to replace the ASPxCallbackPanel with the MS UpdatePanel and use the Wizard inside it. One more solution is to use the ASPxPageControl, position all required controls in its Pages and manage them manually.
我建议研究 ajax 和 jquery 的异步回发,这样您就不会刷新页面,并且只需要更新 ui 的一小部分。
I would recommend looking into ajax and jquery for asynchronous postbacks, that way you don't get a page refresh and you would only need to update a smaller part of the ui.