Ma che vuoi fare? Separazione dei nomi?????
allora...
inizia col mettere i nomi dei files in un array
codice:
<%
Dim oUpload
Set oUpload= new cUpload
With oUpload
.EnabledAspUpload = False
.EnabledImageSize = TRUE
.EnabledLog = False
.AutoRename = True
.Overwrite = False
.SetPath "file\"
.Load
.UploadOnly "Images"
While Not .Eof
If .Files("Height")>=80 or .Files("Width")>=60 then
Response.write ("Le dimensioni dell'immagine " &_
.GetFileName() &" non sono corrette (" &_
.Files("Height") &"x" & .Files("Width") &"): File non caricato
" )
else
.Save
FileList = "|" & .GetFileName()
end if
.MoveNext
Wend
End With
Set oUpload = Nothing
If FileList<>"" then
FileList = Mid(FileList,2)
ArFiles = Split(FileList,"|")
End if
%>
Nell' array arFiles troverai i nomi dei files caricati.
Per la cronaca:
arrnames= split(d,"jpg",",") non si può fare.
in generale
codice:
for c =0 to 4
arrnames= split(d,"jpg",",")
response.write(arrnames(c))
next
Non ha senso.