Returns the language that's used.
The value is generated automatically.
The following languages are currently supported by Quickpay:
da = Danish
de = German
en = English
fo = Faeroese
fr = French
kl = Greenlandish
it = Italian
no = Norwegian
nl = Dutch
pl = Polish
sv = Swedish
Outputting the template tag
@GetString("QuickPay3.language")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("QuickPay3.language"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("QuickPay3.language");
}
Outputting the template tag
<!--@QuickPay3.language-->
Check if string has a value
<!--@If Defined(@QuickPay3.language)-->