1
I have a form that is divided into 10 parts, IE, I will save via post the variables from page to page. However, if you refresh on the page all previous variables are lost.
How can I solve the problem?
Scheme:
Phase 1 - phase1_view -> Post -> phase1controller -> loadview_phase2
Phase 2 - fase2_view -> variaveis_fase1 (input Hidden)-> post-> fase2controller-> loadview_fase3 (sends all the saved variables to phase3)
Phase 3 - fase3_view -> variaveis_fase_1_e_2 (input Hidden) -> post -> fase3controller -> loadview_fase_4 (sends all the variables stored so far to phase 4 view)
.
.
.
So on... But if you refresh the page, all variables are lost.
Thank you.