UserManagement:Group.ZipCode

Version: - string  

Summary

Returns the zip code of the user group.

Settings

The value is based on the zip code field for the user group.

(User Management > Group> Group tab > Information panel > Zip code)

Examples

Outputting the template tag

@GetString("UserManagement:Group.ZipCode")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("UserManagement:Group.ZipCode"); }

Outputting the template tag

<!--@UserManagement:Group.ZipCode-->

Check if string has a value

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