
Use the ICISite interface ValidatePassword method to validate a user's password.
|
|
This method is available in EFT Server 4.3.4 and later. |
Signature:
HRESULT ValidatePassword(
[in] BSTR bstrUser,
[in] BSTR bstrPwd,
[out, retval] VARIANT_BOOL *bValid);
Example:
If oSite.ValidatePassword( "test", "pass") Then
WScript.Echo "Valid password"
End If