|
|
|
|
NameBrowserFile (Property) In french: NomFichierNavigateur
The BrowserFileName property is used to get the original name of the file to upload on the user's computer. This property is available for the multi-file Upload controls.
// The uploaded files are copied to a directory on the server with their initial name FOR I = 1 _TO_ UPL_Upload.Count UploadCopyFile(UPL_Upload, gsPathUploadedFiles, "", I) Trace(UPL_Upload[I].NameBrowserFile, UPL_Upload[I].NameServerFile) END
Syntax
Getting the original name of the file to upload on the user's computer Hide the details
<Result> = <Upload control>[<File ID>].NameBrowserFile
<Result>: Character string Original name of the uploaded file (i.e. file on the user's computer). <Upload control>: Control name Name of the Upload control to be used. <N>: Integer Number of the file considered as being found in the Upload control.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|