UserManagement:User.DefaultAddress.Country

Version: - string  

Summary

Returns the default country of the user.

Settings

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

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

Examples

Outputting the template tag

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

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

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

Check if string has a value

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