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