ok adesso sul db ho nel campo di tipo testo ho la scritta images/prova.gif .
praticamento in visualizzazione correi visualizzare questa immagine per ogni singolo record dove ho inserito il percorso) ma mi esce una X e basta .
Forse l'istruzione e' sbagliata ???
<%
if (Rs.EOF) Response.Write("<td colspan=\"4\">Nessun dato</td>");
else while (!Rs.EOF)
{
%>
<tr>
<td width="150"><%=Server.HTMLEncode(Rs("nome"))%></td>
<td width="150"><%=Server.HTMLEncode(Rs("email"))%></td>
<td width="150"><%=Server.HTMLEncode(Rs("oggetto"))%></td>
<td width="900"><%=Server.HTMLEncode(Rs("messaggio"))% ></td>
<td width="10">[img]<%=server.mappath([/img]>
</tr>
<%
Rs.Movenext();
}
%>


help