UserManagement:User.DefaultAddress.City

Version: - string  

Summary

Returns the default city of the user.

Settings

The value is based on the City input field for a user in Addresses when Default is marked.

(User Management > User > Addresses > Edit user address > City)

Examples

Outputting the template tag

@GetString("UserManagement:User.DefaultAddress.City")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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