UpdatePanel refreshes only once

Posted by superexsl on Stack Overflow See other posts from Stack Overflow or by superexsl
Published on 2010-04-03T18:26:29Z Indexed on 2010/04/03 18:33 UTC
Read the original article Hit count: 334

Filed under:
|
|
|

Hi, I have two updatepanels inside an accordion control, laid out like this:

<accordion>
   <first pane content>
      <updatepanel UpdateMode="conditional">
         <contenttemplate>...</contenttemplate>
         <triggers>...</triggers>
      </updatepanel>
   </first pane content>

   <second pane content>
       <updatepanel>
          <contenttemplate>...</contenttemplate>
          <triggers>...</triggers>
       </updatepanel>
  </second pane content>

</accordion>

The panel updates once, but after that, no updates take place. If I refresh the page, then I can see the updated information. This means that the database is being updated, but the updatepanel isn't refreshing (after refreshing the first time). Why is this happening?

This has been bugging me for days, so any advice would be much appreciated. Thanks!

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about updatepanel