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