UserManagement:User.EmailAllowed.InputName
Version: - stringSummary
Returns an ID/name for the email permission field that can be used in the code for an input field.
Settings
Returns an ID/name for the city field that can be used in the code for an input field.
Remarks
The value is generated automatically.
Examples
Outputting the template tag
@GetString("UserManagement:User.EmailAllowed.InputName")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.EmailAllowed.InputName"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("UserManagement:User.EmailAllowed.InputName");
}
Outputting the template tag
<!--@UserManagement:User.EmailAllowed.InputName-->
Check if string has a value
<!--@If Defined(@UserManagement:User.EmailAllowed.InputName)-->
Let's output this tag here: <strong><!--@UserManagement:User.EmailAllowed.InputName--></strong>
<!--@EndIf(@UserManagement:User.EmailAllowed.InputName)-->