Re: PATH not a valid virtual path - trying to upload files to a URL

  •  05-18-2010, 8:29 PM

    Re: PATH not a valid virtual path - trying to upload files to a URL

    Rob,
     
    When the uploader event handler code be executed, that means the file data is uploaded from client side to server side.
     
    The file is a temp file at the server side.
     
    You can move , copy the file to any disk folder of the current server.
     
    Or copy it to another server via network share \\anotherserver\folder
     
     
    But you can't send the file to another server via http by the args.CopyTo function.
     
    You need use another way for it,
     
    For example , you can use WebService , to send file data from current server to another server.
     
    Regards,
    Terry
     
View Complete Thread