Global:Extranet.Title

Version: - globalvalue  

Summary

Returns the title of the extranet user.

Settings

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

(User Management > User > User tab > Work panel > Title)

Examples

Outputting the template tag

@GetGlobalValue("Global:Extranet.Title")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if globalvalue has a value

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