Reputation: 43
My UpdateProgress is out side the UpdatePanel, I have tried the below things
Added the below code in Page-Load
event
ScriptManager _scriptMan = ScriptManager.GetCurrent(this.Page);
_scriptMan.AsyncPostBackTimeout = 3600;
added the below changes in web.config file:
<system.web>
<httpRuntime maxRequestLength="2097151" requestLengthDiskThreshold="1000" executionTimeout="3600" />
</system.web>
After this changes also, UpdateProgress spinner appears for 90 seconds.
Upvotes: 2
Views: 682
Reputation: 1222
I was having the same problem until I set the AsyncPostBackTimeout on the ScriptManager tag itself.
<asp:ScriptManager ID="ScriptManager1" runat="server"
AsyncPostBackTimeout="600" />
Upvotes: 3