Dibs.oiNames
Version: - stringSummary
Returns string of defined names used by DIBS Payment Window during transaction.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("Dibs.oiNames")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Dibs.oiNames"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Dibs.oiNames");
}
Outputting the template tag
<!--@Dibs.oiNames-->
Check if string has a value
<!--@If Defined(@Dibs.oiNames)-->
Let's output this tag here: <strong><!--@Dibs.oiNames--></strong>
<!--@EndIf(@Dibs.oiNames)-->