Global:Area.Culture.DisplayCountryName

Version: - globalvalue  

Summary

Returns the country name for the website culture in this format: Denmark.

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.DisplayCountryName")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetGlobalValue("Global:Area.Culture.DisplayCountryName"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetGlobalValue("Global:Area.Culture.DisplayCountryName"); }

Outputting the template tag

<!--@Global:Area.Culture.DisplayCountryName-->

Check if globalvalue has a value

<!--@If Defined(@Global:Area.Culture.DisplayCountryName)--> Let's output this tag here: <strong><!--@Global:Area.Culture.DisplayCountryName--></strong> <!--@EndIf(@Global:Area.Culture.DisplayCountryName)-->