1

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 ComboBox

Community
  • 1
  • 1
cnd
  • 32,616
  • 62
  • 183
  • 313
  • possible duplicate of [ASP.NET UpdatePanel Time Out](http://stackoverflow.com/questions/158975/asp-net-updatepanel-time-out) – Daniel Santos Dec 12 '14 at 11:57

2 Answers2

5

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

Davidson Sousa
  • 1,353
  • 1
  • 14
  • 34
1

ASP.NET UpdatePanel Time Out

Community
  • 1
  • 1
e36M3
  • 5,952
  • 6
  • 36
  • 47