DW_extranet_error_dk

Version: - string  

Summary

Return the standard error message in Danish.

Settings

The value is generated automatically.

Remarks

The message tells the user (in Danish) 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_dk")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("DW_extranet_error_dk"); }

Outputting the template tag

<!--@DW_extranet_error_dk-->

Check if string has a value

<!--@If Defined(@DW_extranet_error_dk)--> Let's output this tag here: <strong><!--@DW_extranet_error_dk--></strong> <!--@EndIf(@DW_extranet_error_dk)-->