ok im trying to create a multiple upload thingie by using the html
<input id='uploadFile' type='file' .When i get the full path of the
file
i send it with ajax to a server function which adds it to a list which
contains all the files waiting to be uploaded
The problem is that the upload control when i write fileUpload.value
returns only the filename and not the full path.How do i get the full
path and if i get it can i use the path's to upload all the files to
the server? Please help:)
-------------------html control------------
<input id="uploadFile" type="file"
onchange="Default.AddToList(uploadFile.value)" />