Click here to Skip to main content
15,891,865 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
My aspx uses a Site.Master. In the BodyContent, there is an AJAX tabcontainer/tabpanel, that has an UpdatePanel ("pnlRecurring") containing a table.
One cell contains an ImageButton, whose click event sets the visible property of a second UpdatePanel ("pnlAssgnSummary").

However pnlAssgnSummary's visibility is not affected when I attempt to modify it from pnlRecurring. However when I move that control outside of the pnlRecurring, pnlAssgnSummary's visibility can be manipulated.

I use an "updatePanel" so that I can hide/show several objects at one time. Is my only option to remove the panel, and hide/show each object individually?
Posted
Updated 25-Oct-12 5:26am
v2
Comments
MT_ 25-Oct-12 3:08am    
Please update the question with appropriate "subject" using "Improve Question".

1 solution

I found the answer. I need only one UpdatePanel around the TabContainer control. So I changed each of the other UpdatePanels to a Panel, and the code within the Click event performs as designed.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900