UserManagement:User.PhoneMobile.Input.Error
Version: - stringSummary
Returns the validation message for the Mobile phone
input field.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("UserManagement:User.PhoneMobile.Input.Error")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.PhoneMobile.Input.Error"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("UserManagement:User.PhoneMobile.Input.Error");
}
Outputting the template tag
<!--@UserManagement:User.PhoneMobile.Input.Error-->
Check if string has a value
<!--@If Defined(@UserManagement:User.PhoneMobile.Input.Error)-->
Let's output this tag here: <strong><!--@UserManagement:User.PhoneMobile.Input.Error--></strong>
<!--@EndIf(@UserManagement:User.PhoneMobile.Input.Error)-->