I have a content page and usercontrols in it. usercontrol control1 is visible others not visible by default. control1 has inputs and a button and click event contains show hide event.
Simple Relation Tree:
Masterpage
-cpHead(contentplaceholder)
-cpMain(contentplaceholder)
-ContentPage1 (Page1)
-apMain (ajaxpanel)
-control1 (usercontrol).visible=true
-button click event: control1.visible=false (hide yourself)
control2,3,4.visible=true (show others)
-input fields
-control2,3,4(usercontrol).visible=false
-input fields
All control was inserted to page declaratively. only control1 was seen first others was not seen at first load. after input completed user goes to another control2,3,4
usercontrols have a lot of input like checkboxes,input areas, etc. in user controls. at the end of the all usercontrol complete all inputs from usercontrols will save to database.
1-) What is the best practice, easy way to do this scenerio.
2-)I am not good enough to use this findcontrol.
`I cant changed control1 and control2,3,4 visible property from control1.
I should show hide control` after complete inputs. Could you advice a scenerio or simple sample code.