FirstName

Version: - string  

Summary

Returns the first name of the user.

Settings

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

(User Management > User > User tab > Personal panel > First name)

Examples

Outputting the template tag

@GetString("FirstName")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("FirstName"); }

Outputting the template tag

<!--@FirstName-->

Check if string has a value

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