<%
' definisco conn
Set rs = conn.Execute(" SELECT img FROM Galleria WHERE IDimg=57" )
' imposto il content type
Response.ContentType = " image/jpeg"
' invio il contenuto binario al browser
Response.BinaryWrite (rs(" img" ))
rs.Close
set rs = Nothing
%>