Security.ChangePassword

Changes the user’s password.

Parameters

User.oldPassword (Required)

Specifies the old password.

User.newPassword (Required)

Specifies the new password.

User.confirmPassword (Required)

Specifies the new password for confirmation (must match User.newPassword or the password is not changed).

User.context (Required)

Specifies the context identifier for this user’s session.

Return Values

None.

Example

<FORM method=post action=/servlet/webacc>
   <INPUT type=hidden name=User.context value=xyz>
   <INPUT type=hidden name=action value=Security.ChangePassword>
      Old Password:
   <INPUT type=password name=User.oldPassword value=><BR>
      New Password:
   <INPUT type=password name=User.newPassword value=""><BR>
      Confirm Password:
   <INPUT type=password name=User.comfirmPassword value=""><BR>
</FORM>