Ciao, vorrei stampata solo un'immagine e non la stessa che si ripete.
Mi date un aiuto?


<%
dim objFSO, objF, objFC
dim f1, w, h, c, strType

Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objF = objFSO.GetFolder(Server.MapPath("/img_offerte/"))
Set objFC = objF.Files


For Each f1 in objFC

response.write "[img]&foto&[/img]"
Next

set objFC = nothing
set objF = nothing
set objFSO = nothing
%>