Global:Extranet.Groups

Version: - globalvalue  

Summary

Returns a CSV list of authorized extranet user groups.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetGlobalValue("Global:Extranet.Groups")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if globalvalue has a value

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