Global:Extranet.State

Version: - globalvalue  

Summary

Returns the state (or region) for he extranet user.

Settings

The value is based on the State or region input field for a user.

(User Management > User > User tab > Personal panel > State or region)

Examples

Outputting the template tag

@GetGlobalValue("Global:Extranet.State")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetGlobalValue("Global:Extranet.State"); }

Outputting the template tag

<!--@Global:Extranet.State-->

Check if globalvalue has a value

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