I have 2 Controllers Applicants And Applicants_academic_record.
When user click on Continue in Applicants Controller, it takes the user to Create Method of Applicants_academic_record .
When user Clicks on Back Button , it takes user back to Form of Applicants Controller.
I want to perform three tasks.
- Continue button should takes the user to other Controller but it should not save the data in Database but it should hold it.
- Back button should takes the user back to
ApplicantsController and populates the fields with data that users entered earlier. - Create Button at 2nd form should save the data at once. Means data of Current form and also of previous form.

