ePay.instantcallback
Version: - stringSummary
If you use callbacks, you can set this parameter to determine when your callbackurl is called.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("ePay.instantcallback")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("ePay.instantcallback"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("ePay.instantcallback");
}
Outputting the template tag
<!--@ePay.instantcallback-->
Check if string has a value
<!--@If Defined(@ePay.instantcallback)-->
Let's output this tag here: <strong><!--@ePay.instantcallback--></strong>
<!--@EndIf(@ePay.instantcallback)-->