Dibs.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("Dibs.callbackurl")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Dibs.callbackurl"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Dibs.callbackurl");
}
Outputting the template tag
<!--@Dibs.callbackurl-->
Check if string has a value
<!--@If Defined(@Dibs.callbackurl)-->
Let's output this tag here: <strong><!--@Dibs.callbackurl--></strong>
<!--@EndIf(@Dibs.callbackurl)-->