vote up 0 vote down star

how can I fix this?

After a continuous use of the UpdatePanel, it just stops working. I'm using multiple UpdatePanels in one page and all are set in Conditional update.

flag

71% accept rate
Could you please put your code here ? – Aaron Oct 1 at 2:49

2 Answers

vote up 0 vote down check

A bit more explanation would help.

Anyways, are you updating the UpdatePanel when ever it does a postback?

link|flag
vote up 0 vote down

You can increase the time that the browser will wait by setting the AsyncPostBackTimeout property on your ScriptManager instance in Page_Load on the server. You have to set the timeout before the update panel is initially rendered to the browser.

This doesn't affect the server timeout though - you may have an update panel that is waiting for 30 seconds while the server timeout is only 10 seconds, so make sure that they have complementary values for the given page.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.