修改core.js

---
        timeout: function() {
                try {
                        this.duration = new Date().getTime() - this.__start;
                        var r = this.onTimeout(this.duration, this);
                        if(typeof r == "undefined" || r != false) {
                                this.abort();
                        } else {
                                this.timeoutTimer = setTimeout(this.timeout.bind(this),
AjaxPro.timeoutPeriod);
                        }
                } catch(error) {
                        // Statements that execute in the event of an exception
                } finally {
                        // Statements that execute afterward either way
                }

----



参见
http://groups.google.sc/group/ajaxpro/browse_thread/thread/da617d3dc31d65cb
压缩包中是已经编译好的文件,也可以自己编译
 https://files.cnblogs.com/momo0789/AjaxPro.2.dll.zip

相关文章:

  • 2022-02-07
  • 2021-11-07
  • 2021-07-10
  • 2021-12-04
  • 2021-10-04
  • 2021-05-15
  • 2022-12-23
  • 2021-09-05
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-14
相关资源
相似解决方案