|
Summary
Optional account name used while connecting to server.
Description
The Account property is used during the login process to the server. Some FTP servers require that an account name be specified in addition to the user name and the password. The majority of
servers, however, do not require this and in these cases this property can be left blank.
If an application prompts the user for the user name and password before connecting to the server, then adding fields to allow the user to enter an optional account name and an FTP server port (see
the Port property reference page) should be provided. If the login parameters are specified at design time, then the local system administrator should be consulted to determine if an account name or
a port other than the default port are required.
This property can be changed at design time and at run time before a connection has been established. There is no default value for this property.
Example
FTPClient.Host = "speedy" FTPClient.User = "santa" FTPClient.Password = "north pole" FTPClient.Account = "sc001d"
FTPClient.Action = ACTION_CONNECT
|