UserManagement:User.City

Version: - string  

Summary

Returns the city of the user.

Settings

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

(User Management > User > User tab > Personal panel > City)

Examples

Outputting the template tag

@GetString("UserManagement:User.City")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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