I am looking for a recommended design pattern for the following:
I am working in Visual Studio Pro 2010; I have a multi-page ASP (web forms) application where users provide information and answer questions across a series of pages.
Before the user executes a "Submit" function, I need to let the them preview their answers. I began by designing the app so that the controls on each page are contained in an user control, then on the confirmation page, I reassemble each of the user controls
into one long page. This isn't working for a number of reasons (for brevity, I'll skip detailing each failure point), but this is not working.
So, I need to figure out the best way to let the user preview their completed submission (again the questions and answers span multiple pages) before submitting.
Can anyone point me towards a good design pattern for an application like this?
...
Go to the complete details ...