DWOldPassword
Version: -Summary
Returns the users current (old) extranet password.
Settings
The value is generated automatically based on the users login information.
Remarks
The value should be used for Change password
prompts, e.g. as a hidden field.
Examples
Outputting the template tag
@GetObject("DWOldPassword")
Check if tag has a value
@if(!var.IsNullOrWhiteSpace(GetObject("DWOldPassword"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
var storedTag = GetObject("DWOldPassword");
}
Outputting the template tag
<!--@DWOldPassword-->
Check if object has a value
<!--@If Defined(@DWOldPassword)-->
Let's output this tag here: <strong><!--@DWOldPassword--></strong>
<!--@EndIf(@DWOldPassword)-->