UserManagement:User.HouseNumber
Version: - stringSummary
Returns the house number for the user.
Settings
The value is based on the House number input field for a user.
(User Management > User > User tab > Personal panel > House number)
Examples
Outputting the template tag
@GetString("UserManagement:User.HouseNumber")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.HouseNumber"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("UserManagement:User.HouseNumber");
}
Outputting the template tag
<!--@UserManagement:User.HouseNumber-->
Check if string has a value
<!--@If Defined(@UserManagement:User.HouseNumber)-->
Let's output this tag here: <strong><!--@UserManagement:User.HouseNumber--></strong>
<!--@EndIf(@UserManagement:User.HouseNumber)-->