I have the scenario in my online exam asp.net mvc application.
where, as student logged in-> he selects test/Exam -> then load the set of questions.
Now I am populating the questions one by one like in wizard. this wizard is totally on the fly (means dynamically creates all elements),build in javascript and jquery.
scenario is : when student gives the answer for the question is it ok to hold answer in collection, and send to controller at once on last question submission or immediately save on "Next" button click ? which is better ? I think on Next button click will better . but I want to know standard way for this. Please guide me.