AjaxPro和OnTimeOut错误

时间:2009-06-25 21:11:24

标签: asp.net ajaxpro

我的AjaxPro项目出现以下错误:

Error: this.onTimeout is not a function
Source: http://localhost:3405/ajaxpro/core.ashx
Line: 407

我知道它与AjaxPro的发布有关,但是你们中的任何一个都有一个不包含该错误的版本吗?或者我该如何纠正? 我已经从AjaxPro.info下载了最新版本,没有任何运气。

2 个答案:

答案 0 :(得分:1)

请使用异步调用,例如JavaScript:

function getServerTime()
{
  test_Default8.GetServerTime(getServerTime_callback);  // asynchronous call
}

// This method will be called after the method has been executed
// and the result has been sent to the client.

function getServerTime_callback(res)
{
  alert(res.value);
}

这将解决您的问题。

答案 1 :(得分:0)