Returns the second address of the user.
The value is based on the Address 2 input field for a user.
(User Management > User > User tab > Personal panel > Address 2)
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)-->