Ogone.OrderID
Version: - stringSummary
The shop's order number for the order.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("Ogone.OrderID")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("Ogone.OrderID"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("Ogone.OrderID");
}
Outputting the template tag
<!--@Ogone.OrderID-->
Check if string has a value
<!--@If Defined(@Ogone.OrderID)-->
Let's output this tag here: <strong><!--@Ogone.OrderID--></strong>
<!--@EndIf(@Ogone.OrderID)-->