AjaxProプロジェクトで次のエラーが発生します。
Error: this.onTimeout is not a function
Source: http://localhost:3405/ajaxpro/core.ashx
Line: 407
AjaxProのリリースと関係があることは知っていますが、そのエラーを含まないバージョンをお持ちの方はいますか?または、どうすれば修正できますか?運が悪かったので、AjaxPro.infoから最新バージョンをダウンロードしました。
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);
}
これで問題は解決します。