私のajaxリクエストのために、スクリプトのタイムアウトを20分に設定しました。10 分 5 秒後にリクエストがタイムアウトします。私はここで何か間違っていますか?どうすればこれを改善できますか? ステージング DB に対して機能をテストしていますが、これは非常に遅いサーバーです。
Server.ScriptTimeout = 1200;
この時点で xhr.responseText も空白です。
$.ajax({
cache: false,
url: url,
type: Ajax.MethodType.POST, //global.vars.js
data: { estimateId: estimateId, random: Math.random() },
error: function (xhr, ajaxOptions, thrownError) {
jMessageError(xhr.responseTex, $click, false, true);
},
success: function (result) {
//display the count
$("#" + enumFormFields.hiddenCountNumberId).val(result.Message);
$("#" + enumDashboard.estimateVolumeId).html(result.Message);
}
});