MiddleName
Version: - stringSummary
Returns the middle name of the 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("MiddleName")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("MiddleName"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("MiddleName");
}
Outputting the template tag
<!--@MiddleName-->
Check if string has a value
<!--@If Defined(@MiddleName)-->
Let's output this tag here: <strong><!--@MiddleName--></strong>
<!--@EndIf(@MiddleName)-->