up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question

68% accept rate
Could you please put your code here ? – Braveyard Oct 1 '09 at 2:49
feedback

2 Answers

up vote 0 down vote accepted

A bit more explanation would help.

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

link|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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