Hi there guys i will try my best to explain the issue i am having.
I am creating dynamic forms which have different stages, so on the first page render the page init event creates all 'Stage1' controls and all the event clicks get registered in the page init aswell. The user would then click a button to go to 'Stage2' so the page will post back 'Stage1' controls get re created in page init and then 'Stage2' controls get rendered in the click event (i guess we can say after page load) these controls replace 'Stage1' controls. Whilst the controls render correctly i am getting an issue with the click events firing many times (this can occur across two separate aspx pages as well). I guess this is because the events have been assigned in page load instead of page init. I sadly can not just redirect to the same page on the click event as the (ispostback) (!ispostback) will go out of whack.
What options do i have? Render all the controls and hide all but the required stage in separate panels, then just do a hide/show type thing on the button clicks? Would there be a performance issue? or is there away to get around the click event issue?