umbraco v 4.11.10 (Assembly version: 1.0.4926.14927) umbraco Contour version 3.0.12
I have a multi-step contour form which should only be able to be submitted once per member, also the member should be able to return to the form and continue from the next step not submitted.
Currently if the member refreshes the page the form starts from the beginning allowing multiple submissions and multiple partial submissions per member.
The macro is being rendered programmatically like so:
var macro = new Macro { Alias = "umbracoContour.RazorRenderForm" }; macro.MacroAttributes.Add("formguid", Model.FormGuid); macro.MacroAttributes.Add("allowediting", "1"); PollPanel.Controls.Add(macro);
How do I enable the member to continue the form if they navigate away and return?
Allow member to resume partially submitted form
umbraco v 4.11.10 (Assembly version: 1.0.4926.14927)
umbraco Contour version 3.0.12
I have a multi-step contour form which should only be able to be submitted once per member, also the member should be able to return to the form and continue from the next step not submitted.
Currently if the member refreshes the page the form starts from the beginning allowing multiple submissions and multiple partial submissions per member.
The macro is being rendered programmatically like so:
How do I enable the member to continue the form if they navigate away and return?
Many thanks,
Dave Parsons
Hello,
I think this is something you need to add programmatically. Perhaps with a custom workflow.
Jeroen
is working on a reply...