0

AjaxProプロジェクトで次のエラーが発生します。

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

AjaxProのリリースと関係があることは知っていますが、そのエラーを含まないバージョンをお持ちの方はいますか?または、どうすれば修正できますか?運が悪かったので、AjaxPro.infoから最新バージョンをダウンロードしました。

4

2 に答える 2

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);
}

これで問題は解決します。

于 2011-12-01T09:28:05.880 に答える
0

これを試すことができます: http://groups.google.sc/group/ajaxpro/browse_thread/thread/da617d3dc31d65cb

于 2009-08-12T11:53:25.043 に答える