Returns or sets the password that will be sent with the request to log on to remote computers. If this property is left blank, the control will send a default password.
Syntax
object.Password = string
The Password property syntax has these parts:
Part | Description |
object | An object expression that evaluates to an object in the Applies To list. |
string | The password to be sent when logging on to a remote computer. |
Remarks
The default password the control sends will depend on the exact scenario, as shown in the table below:
UserName Property | Password Property | UserName sent to FTP Server | Password sent to FTP server |
Null or "" | Null or "" | "anonymous" | User's email name |
Non-null string | Null or "" | UserName property | "" |
Null | Non-null string | Error | Error |
Non-null string | Non-null string | UserName property | Password property |