Update panel in Tab Container

Posted by Sam_Cogan on Stack Overflow See other posts from Stack Overflow or by Sam_Cogan
Published on 2010-03-25T10:50:05Z Indexed on 2010/03/25 10:53 UTC
Read the original article Hit count: 343

Filed under:
|
|
|

I have a tab container with 5 tabs, each tab contains an update panel.

When the user initially opens the form, they can only see the first Tab, the others are set to visible=false. Once they have completed the first form, the hit save which sends a partial postback to save the data to the DB. Once that is saved, I then want to set all the other tabs to visible, however this does not work at the moment, I am assuming because the tab container is not contained in an update panel.

How can I get this to work, do I need to put the tab container in it's own update panel, which will obviously then contain all the other update panels, or should I not use an update panel in the first tab and do a full page postback?

© Stack Overflow or respective owner

Related posts about asp.net-ajax

Related posts about ASP.NET