Error: this.onTimeout is not a function
Source: http://localhost:3405/ajaxpro/core.ashx
Line: 407
私はAjaxProのリリースとは何かである知っているが、あなたがたのうちにはないバージョンを持っていませんそのエラーが含まれていますか?または、どうすれば修正できますか? AjaxPro.infoから最新バージョンをダウンロードしました。
Error: this.onTimeout is not a function
Source: http://localhost:3405/ajaxpro/core.ashx
Line: 407
私はAjaxProのリリースとは何かである知っているが、あなたがたのうちにはないバージョンを持っていませんそのエラーが含まれていますか?または、どうすれば修正できますか? AjaxPro.infoから最新バージョンをダウンロードしました。
あなたはこれを試すことができます。 はhttp://groups.google.sc/group/ajaxpro/browse_thread/thread/da617d3dc31d65cb
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);
}
これはあなたの問題を解決します。