How to check notification after successfully trans (General questions)
Hi All
Thanks in advance.
I am using ASP and using (WeOnlyDo.wodFtpDLXCom.1) component I have successfully connected to remote server and my file has been transferred successfully. How to write ASP code to get notification on successful transfer
Please help????
Re: How to check notification after successfully t
Venkat,
usually Done event is fired as notification, but since it's unavailable in ASP, you can't get notified this way. Instead, you use Blocking = True, and all methods are blocking execution until they are completed. So, once you call PutFile/GetFile, it will transfer file, and when it returns to your code that means file is transferred. Do determine if any errors occurred, you should check if Error is set in Err object.