QuickPayPaymentWindow.language
Version: - stringSummary
Returns language code used in the HTML pages as 2-letter ISO 639-1 alphabetical code.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("QuickPayPaymentWindow.language")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("QuickPayPaymentWindow.language"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("QuickPayPaymentWindow.language");
}
Outputting the template tag
<!--@QuickPayPaymentWindow.language-->
Check if string has a value
<!--@If Defined(@QuickPayPaymentWindow.language)-->
Let's output this tag here: <strong><!--@QuickPayPaymentWindow.language--></strong>
<!--@EndIf(@QuickPayPaymentWindow.language)-->