I am struggling with finding clear answers to dynamically creating the same page over and over. The questions and samples I have found seem to be all over the board on this topic. I have studied the life cycle and still seem to not have a clear answer as to where code should go.
I have a master page and a content page. All the content in the content area needs to be dynamically created (text boxes, ddl's, page tabs, buttons/onclick etc.).
After a user fills in data and clicks a submit button, I need to read the values off the form and rebuild the page completely again (not add/remove controls to current content).
My question is then. Where do I put my code to build the page? Will this area allow me to use IsPostBack so I can rebuild content with Request.Form values? Will my buttons _Click events work? Are there any working samples out there you could direct me to?
Thank you very much for the feedback...