codice:
<%
pathImmagine = "prodotti/pics/" & rs("Codice") & ".jpg"
set fso = server.createObject("scripting.fileSystemObject")
if fso.fileExists(server.mapPath(pathImmagine)) then
%>
<img border="0" src"<%=pathImmagine%>" />
<%
else
%>
Immagine non disponibile.
<%
end if
set fso = nothing
%>