DW_extranet_error_uk

Version: - string  

Summary

Return the standard error message in English.

Settings

The value is generated automatically.

Remarks

The message tells the user (in English) that the username or password is wrong or that the maximum length for passwords is 32 characters.
The tag can be used for both Login and New Password prompts.

Examples

Outputting the template tag

@GetString("DW_extranet_error_uk")
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("DW_extranet_error_uk"))) {
@* Tag has value, so let's do something useful here. *@
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Assign tag to a value for later use

@{
string storedTag = GetString("DW_extranet_error_uk");
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Outputting the template tag

<!--@DW_extranet_error_uk-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if string has a value

<!--@If Defined(@DW_extranet_error_uk)-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX