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