ePay.language
Version: - stringSummary
Define a language displayed in the payment window. If you use auto detection and the found language is not available, the language shifts to English. If this parameter is not defined, the default setting is Danish. Can be difined in Settings -> Payment window in your ePay administration.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("ePay.language")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("ePay.language"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("ePay.language");
}
Outputting the template tag
<!--@ePay.language-->
Check if string has a value
<!--@If Defined(@ePay.language)-->
Let's output this tag here: <strong><!--@ePay.language--></strong>
<!--@EndIf(@ePay.language)-->