hello,
i wrote try catch to catch exception occurs when using incorrect password or username
try catch is not working.it is still showing exception error message.
is any option available in edftp.handle this condition
try
{
objftp.login(username,password);
}
catch(Exception ex)
{
Response.write(ex.message);
}
please guide
Jim