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