ePay.merchantnumber
Version: - stringSummary
Returns current data of Merchant field in the payment gateway settings.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("ePay.merchantnumber")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("ePay.merchantnumber"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("ePay.merchantnumber");
}
Outputting the template tag
<!--@ePay.merchantnumber-->
Check if string has a value
<!--@If Defined(@ePay.merchantnumber)-->
Let's output this tag here: <strong><!--@ePay.merchantnumber--></strong>
<!--@EndIf(@ePay.merchantnumber)-->