Skip to main content
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SecurityModule.ChangePasswordOnLogonAction Property

An Action that shows the Change password on first logon dialog.

Namespace: DevExpress.ExpressApp.Security

Assembly: DevExpress.ExpressApp.Security.v24.2.dll

#Declaration

[Browsable(false)]
public PopupWindowShowAction ChangePasswordOnLogonAction { get; }

#Property Value

Type Description
PopupWindowShowAction

A PopupWindowShowAction Action that shows the Change password on first logon dialog.

#Remarks

Users that implement the IAuthenticationStandardUser interface have the IAuthenticationStandardUser.ChangePasswordOnFirstLogon property. This property specifies whether they are prompted to change their password on the first logon. When this property is set to true for a particular user, an additional dialog represented by the ChangePasswordOnLogonParameters Detail View is displayed by the ChangePasswordOnLogonAction Action after authentication. The image below shows the displayed dialog.

ChangePasswordOnFirstLogon

When executed, the ChangePasswordOnLogonAction Action can throw the RetypeTheInformation exception in the following cases:

  • New password value is the same as an old password value.
  • New password value and a confirmed password value are different.
See Also