DWUsers:User:Password

Version: - string  

Summary

Returns the Password of an extranet user.

Settings

The value is based on the Password input field in the User details section for the user.

Examples

Outputting the template tag

@GetString("DWUsers:User:Password")

Check if tag has a value

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

Assign tag to a value for later use

@{ string storedTag = GetString("DWUsers:User:Password"); }

Outputting the template tag

<!--@DWUsers:User:Password-->

Check if string has a value

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