Confirmation
Available tags
Field.[FieldSystemName].Name
Returns the name of the submitted field.
@GetString("Field.[FieldSystemName].Name")
Field.[FieldSystemName].OptionText
Returns the label/text of the option that is submitted by the user.
@GetString("Field.[FieldSystemName].OptionText")
Field.[FieldSystemName].SystemName
Returns the system name of the submitted field.
@GetString("Field.[FieldSystemName].SystemName")
Field.[FieldSystemName].Value
Returns the value that is submitted by the user.
@GetString("Field.[FieldSystemName].Value")
Submit.EmailFieldValue
Returns the value from the field that is selected as email field.
@GetString("Submit.EmailFieldValue")
Submit.ReceiptTemplateText
Returns the text that is rendered when the form is submitted and you are redirected to a confirmation template.
@GetString("Submit.ReceiptTemplateText")
Submit.ReceiptUrl
Returns the url to the selected recipt page.
@GetString("Submit.ReceiptUrl")
Available loops
AllFields
The AllFields
loop lets you display information about all fields of the form.
@foreach (LoopItem item in GetLoop("AllFields")){ <p>@item.GetValue("TagName")</p> }
Fields
The Fields
loop lets you display information about the form's fields.
@foreach (LoopItem item in GetLoop("Fields")){ <p>@item.GetValue("TagName")</p> }
FieldValues
The FieldValues loop lets you display information about the submitted form fields.
@foreach (LoopItem item in GetLoop("FieldValues")){ <p>@item.GetValue("TagName")</p> }
FieldValues
The FieldValues
loop lets you display information about all values of the field.
@foreach (LoopItem item in GetLoop("FieldValues")){ <p>@item.GetValue("TagName")</p> }
Form.Submits
The Form.Submits
loop lets you display available data of the form submits.
@foreach (LoopItem item in GetLoop("Form.Submits")){ <p>@item.GetValue("TagName")</p> }
Options
The Options
loop lets you display various information about available options of the confirmation.
@foreach (LoopItem item in GetLoop("Options")){ <p>@item.GetValue("TagName")</p> }