UpdatePanel doesn't load correctly on second try
- by Ed Woodcock
Ok, I've got two UpdatePanels on a (relatively simple) CRUD-management page, and I'm having some issues with them.
The first updatepanel fails the second time it's updated (infinite loading popout, page doesn't change, request comes back properly but apparently isn't used). The second updatepanel fails if the first updatepanel has updated first, or if a certain internal trigger is pressed twice. Interestingly, the first updatepanel can be called multiple times with no problems if the first has yet to be called.
layout example:
<updatepanel>
<table>
<trigger>
</table>
</updatepanel>
<lightbox>
<updatepanel>
<multiple triggers>
</updatepanel>
</lightbox>
The use of the second updatepanel is required for the lightbox to function correctly (so it can't just be one big one).
The first updatepanel exhibits this behaviour regardless of whether the second is present on the page or not.
Has anyone ever experienced similar problems/have any ideas?