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