UserManagement:User.FormValidationError.Message

Version: - string  

Summary

Returns message related to not vaidated field and based on text in Error Messages section of the module paragraph settings. 

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("UserManagement:User.FormValidationError.Message")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("UserManagement:User.FormValidationError.Message"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("UserManagement:User.FormValidationError.Message"); }

Outputting the template tag

<!--@UserManagement:User.FormValidationError.Message-->

Check if string has a value

<!--@If Defined(@UserManagement:User.FormValidationError.Message)--> Let's output this tag here: <strong><!--@UserManagement:User.FormValidationError.Message--></strong> <!--@EndIf(@UserManagement:User.FormValidationError.Message)-->