Xinux
Xinux

Reputation: 11

How to show submitted form data in Umbraco forms

I'm searching for a way to display the submitted form data on the next page - Using "Umbraco forms" in Umbraco 7.6.3.

I've tried the available methods on https://our.umbraco.org/documentation/Products/UmbracoForms/Developer/Working-With-Data/ but most of the methods returns nothing or throws the "There is already an open DataReader" error.

Upvotes: 0

Views: 1518

Answers (2)

Umbraco Helper
Umbraco Helper

Reputation: 1

Or you could use Form Editor instead. It's got this among other features built-in and documented - see these tutorials.

Upvotes: 0

harvzor
harvzor

Reputation: 2908

I would recommend creating a custom workflow which sets a variable which stores the form submission ID to the users session.

Then, when the user checks out the next page, you can query for that submission and display what was posted.

Upvotes: 1

Related Questions