DevExpress Aspxcallbackpanel 客户端超时?
我读过很多关于如何处理服务器端超时和超时的文章。回调期间出错... 但是客户端超时怎么办?
这是例子。 盖伊填写了一份网络表格。点击提交并点击ASPXCallbackPanel 执行 PerformCallback。 但就在那时……他的互联网掉线了或者他的路由器坏了。
在我的应用程序中,回调面板永远不会将控制权返回给网页......并且回调永远不会完成。 有人知道客户端的超时设置吗?或者通过 Javascript 中止回调的方法?
谢谢
I've read plenty about how to handle Server-Side timeouts & errors during a Callback...
but what about Client Side timeouts?
here's the example.
Guy fills out a web form. Hits submit & the ASPXCallbackPanel does a PerformCallback.
But right then... his internet drops or his router burps.
In my app, the Callback panel never returns control back to the Webpage.. and the callback never completes.
Anybody know a Timeout settings on the Client side? or a way to abort a callback through Javascript?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我是你,每次回调发送到服务器时我都会启动一个计时器,并在计时器计时时刷新页面。如果回调返回较早,则应停止计时器。使用 ASPxGlobalEvents 控件可以轻松完成此操作。
If I were you, I would start a timer everytime a callback is sent to the server and refresh the page when the timer ticks. If the callback returns earlier, the timer should be stopped. This can be easily done using the ASPxGlobalEvents control.