Ajax update panel - how to set max updating time?
That isn't usual for my WebApplication, but user can load really long process inside UpdatePanel.
And he will wait it looking on loading via UpdateProcessing stuff.
The trouble is because Update Panel Aborts loading after some time and totally breaking web application.
How can I calm down this Ajax control ?
offtopic : another ajax trouble when I even didn't fixed the trouble with their ComboB开发者_C百科ox
On the Script manager, set the AsyncPostBackTimeout. The value should be in seconds. For example:
AsyncPostBackTimeout = "600"
http://msdn.microsoft.com/en-us/library/system.web.ui.scriptmanager.asyncpostbacktimeout.aspx
ASP.NET UpdatePanel Time Out
精彩评论