UserManagement:User.Name

Version: - string  

Summary

Returns the name of the 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

@GetString("UserManagement:User.Name")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("UserManagement:User.Name"); }

Outputting the template tag

<!--@UserManagement:User.Name-->

Check if string has a value

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