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