Hello,
I have seven user controls developed. I have a aspx page which has seven tabs, based on each tab click, I'm loading the user controls dynamically. I'm doing this from the page_load event of my aspx page.
All my user controls have a common method called "Save". I need to call these methods from the aspx page dynamically when navigating between the tabs. Say, If I'm in tab1 and navigate to tab2, I want to call the save method in Tab1. The save methods basically saves the state of the controls in user control.
I'm not sure how to do this.
Any help would be much appreciated!!!