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