
jugando con el codigo... intentaria algo asi
Código ASP:
Ver original<%
Set Upload = Server.CreateObject("Persits.Upload.1")
'///***************************************////
'/// CAMBIA ESTE VALOR POR LA CARPETA QUE USAS ///
'///***************************************////
carp1="c:\upload\ima"
carp2="c:\upload\pdf"
%>
Files:<BR>
<%
band=0
For Each File in Upload.Files
if band=0 then Upload.Save carp1 else Upload.Save carp2 end if
Response.Write File.Name & "= " & File.Path & " (" & File.Size &" bytes)<BR>"
band=1
Next
band=0
%>
soloseria una prueba....