我的UpdateProgress在UpdatePanel外面,我尝试过以下内容
在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秒。
答案 0 :(得分:3)
在我在ScriptManager标记本身上设置AsyncPostBackTimeout之前,我遇到了同样的问题。
<asp:ScriptManager ID="ScriptManager1" runat="server"
AsyncPostBackTimeout="600" />