I want to create a wizard that includes a few steps, that in the final steps
we need to include all the steps and save to the data base.
What is the best design to do this ?
Is there an implementation for jquery ?
Do I need to save the steps in session till the final save ?
If you will not go to the database on each wizard page, then you will have to use either sessions or cookies to store the data between page requests.
You can also use client side tricks that will utilize javascript and hidden frames to hold the data.