Custom Form - Exit Page Keywords?

We are using a multiple page form, and would like to allow the option for the user to save the form and return later. The Save and Exit button shows fine, but when clicking it, we are taken to a blank screen. So, I assumed I needed to populate that bodycopy with keywords, but I can not find any. What is suppose to show on the Save and Exit page? And how can we get it to show a link or something that allows the user to know where to return? We are using a custom Save and Exit body copy.


Thanks.

If you customize the "Exit Page Contents" in details screen, you will see an Exit page bodycopy gets created.

[quote]
If you customize the "Exit Page Contents" in details screen, you will see an Exit page bodycopy gets created.

[/quote]



I understand that, and have done that. But what keywords are used here? There is no keyword list dropdown (3.24.3), and the Manuals page does not list keywords to be used here. I assume there must be a keyword to generate a unique URL for the user to return to?

If the form is for public user, you will be able to restore the form data by just going back to the form directly.


If the form is for logged in user, the situation is a bit different. Form data is not stored in cookie but a submission asset.

Therefore you need to place following link in the bodycopy



<a href="./?a=1829?SQ_FORM_1830_SUBMISSION=%form_submission_id%">Continue Submission</a>



Note: 1829 is the assetid of the Custom Form Page, 1830 is the assetid of the Form





I will make sure this instruction goes to manual.

[quote]
If the form is for public user, you will be able to restore the form data by just going back to the form directly.



If the form is for logged in user, the situation is a bit different. Form data is not stored in cookie but a submission asset.

Therefore you need to place following link in the bodycopy



<a href="./?a=1829?SQ_FORM_1830_SUBMISSION=%form_submission_id%">Continue Submission</a>



Note: 1829 is the assetid of the Custom Form Page, 1830 is the assetid of the Form





I will make sure this instruction goes to manual.

[/quote]



Thank you!!