Global:Extranet.Name

Version: - globalvalue  

Summary

Returns the name of the extranet user.

Settings

The value is based on the Name input field for a user.

(User Management > User > User tab > Personal panel > Name)

Examples

Outputting the template tag

@GetGlobalValue("Global:Extranet.Name")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if globalvalue has a value

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