私のUpdateProgressはUpdatePanelの外にあり、以下のことを試しました
- JavaScriptを追加し、マスターページに「AsyncPostBackTimeout=3600」を追加しました
Page-Load
イベントで以下のコードを追加しましたScriptManager _scriptMan = ScriptManager.GetCurrent(this.Page);
_scriptMan.AsyncPostBackTimeout = 3600;
web.configファイルに以下の変更を追加しました。
<system.web>
<httpRuntime maxRequestLength="2097151" requestLengthDiskThreshold="1000" executionTimeout="3600" />
</system.web>
この変更後も、UpdateProgressスピナーが90秒間表示されます。