Global:Area.Culture.CountryCode
Version: - globalvalueSummary
Returns the code name for the website culture in this format: DK.
Settings
Based on the setting for the culture of the website.
(Modules - Websites - website - Regional settings)
Examples
Outputting the template tag
@GetGlobalValue("Global:Area.Culture.CountryCode")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetGlobalValue("Global:Area.Culture.CountryCode"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetGlobalValue("Global:Area.Culture.CountryCode");
}
Outputting the template tag
<!--@Global:Area.Culture.CountryCode-->
Check if globalvalue has a value
<!--@If Defined(@Global:Area.Culture.CountryCode)-->
Let's output this tag here: <strong><!--@Global:Area.Culture.CountryCode--></strong>
<!--@EndIf(@Global:Area.Culture.CountryCode)-->