Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
I think i have resolved this now, although i would still interested in hearing alternatives, or other developers experiences with dynamic controls. – Dave Nov 19 '12 at 11:42
I ended up just having RenderControls constantly being called in page init regardless of postback or not, then instead of calling render controls again in the button click i have called: Response.Redirect(Request.RawUrl); and to ensure that the initial data is not overwritten i decide whether its a post back by checking the referrer. – Dave Nov 19 '12 at 11:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.