Global:Extranet.MiddleName

Version: - string  

Summary

Returns the middle name of the extranet user.

Settings

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

(User Management > User > User tab > User info panel > Middle name)

Examples

Outputting the template tag

@GetString("Global:Extranet.MiddleName")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("Global:Extranet.MiddleName"); }

Outputting the template tag

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

Check if string has a value

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