Global:Area.Culture.Name

Version: - globalvalue  

Summary

Returns the code name for the website culture in this format: da-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.Name")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if globalvalue has a value

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