QuickPayPaymentWindow.callbackurl
Version: - stringSummary
Returns the URL that the payments will make a call back to with the result of the transaction.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("QuickPayPaymentWindow.callbackurl")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("QuickPayPaymentWindow.callbackurl"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("QuickPayPaymentWindow.callbackurl");
}
Outputting the template tag
<!--@QuickPayPaymentWindow.callbackurl-->
Check if string has a value
<!--@If Defined(@QuickPayPaymentWindow.callbackurl)-->
Let's output this tag here: <strong><!--@QuickPayPaymentWindow.callbackurl--></strong>
<!--@EndIf(@QuickPayPaymentWindow.callbackurl)-->