Submit.ReceiptUrl
Version: - stringSummary
Returns the url to the selected recipt page.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("Submit.ReceiptUrl")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Submit.ReceiptUrl"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Submit.ReceiptUrl");
}
Outputting the template tag
<!--@Submit.ReceiptUrl-->
Check if string has a value
<!--@If Defined(@Submit.ReceiptUrl)-->
Let's output this tag here: <strong><!--@Submit.ReceiptUrl--></strong>
<!--@EndIf(@Submit.ReceiptUrl)-->