Re: client-side name of uploaded file

  •  04-05-2010, 11:34 PM

    Re: client-side name of uploaded file

    Hi,
     
    You can get the name of the file, but not the path.
     
    Please try this sample code :
     
    function CuteWebUI_AjaxUploader_OnSelect(files)
    {
        alert(files[0].FileName);
    }
     
    function CuteWebUI_AjaxUploader_OnQueueUI(files)
    {
        //files[0].FileName
    }
     
    Regards,
    Terry
View Complete Thread