Returns language code used in the HTML pages as 2-letter ISO 639-1 alphabetical code.
The value is generated automatically.
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)-->